/* ==========================================================================
   GLUCOZAN - Biohack Dark Mode & Cyber Aesthetic Stylesheet
   Designed for IT specialists, Gamers & Modern Desk Workers
   ========================================================================== */

:root {
  --bg-primary: #080c14;
  --bg-secondary: #0e1626;
  --bg-card: rgba(16, 26, 44, 0.85);
  --bg-card-hover: rgba(23, 37, 63, 0.95);
  --bg-input: #0a111e;
  
  --neon-cyan: #00f2fe;
  --neon-cyan-glow: rgba(0, 242, 254, 0.35);
  --neon-blue: #38bdf8;
  --neon-electric: #3b82f6;
  --neon-purple: #8b5cf6;
  --neon-purple-glow: rgba(139, 92, 246, 0.35);
  --neon-orange: #f97316;
  --neon-orange-glow: rgba(249, 115, 22, 0.4);
  --neon-green: #10b981;
  --neon-red: #ef4444;

  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-subtle: rgba(56, 189, 248, 0.15);
  --border-active: rgba(0, 242, 254, 0.6);
  --border-orange: rgba(249, 115, 22, 0.5);

  --font-main: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
  --font-mono: 'Rajdhani', monospace, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(0, 242, 254, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(249, 115, 22, 0.04) 0%, transparent 45%);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #fff;
  text-shadow: 0 0 10px var(--neon-cyan);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-narrow {
  max-width: 860px;
}

/* Typography Utilities */
.font-cyber {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.font-tech {
  font-family: var(--font-mono);
}

.neon-cyan { color: var(--neon-cyan); }
.neon-orange { color: var(--neon-orange); }
.neon-purple { color: var(--neon-purple); }
.neon-green { color: var(--neon-green); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Top Urgent Cyber Bar */
.top-bar {
  background: linear-gradient(90deg, #090d16 0%, #151f33 50%, #090d16 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--neon-cyan); }
  50% { opacity: 0.4; transform: scale(0.85); box-shadow: 0 0 2px var(--neon-cyan); }
}

.top-bar-timer-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.badge-timer {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid var(--border-orange);
  color: #ff9944;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.2), rgba(249, 115, 22, 0.2));
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.logo-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.2em;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 26px;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
}

.header-phone:hover {
  color: var(--neon-cyan);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  height: 2.5px;
  width: 100%;
  background-color: var(--neon-cyan);
  border-radius: 2px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.15rem;
}

.btn-block {
  width: 100%;
  display: flex;
}

.btn-neon {
  background: linear-gradient(135deg, #00d2ff 0%, #0072ff 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.45);
}

.btn-neon:hover {
  background: linear-gradient(135deg, #00f2fe 0%, #0088ff 100%);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.75);
  transform: translateY(-2px);
  color: #fff;
}

.btn-orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.45);
}

.btn-orange:hover {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.8);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: rgba(14, 22, 38, 0.6);
  border: 1px solid var(--border-active);
  color: var(--neon-cyan);
}

.btn-outline:hover {
  background: rgba(0, 242, 254, 0.12);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
  color: #fff;
}

/* Hero Section */
.hero-section {
  padding: 60px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neon-cyan);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #00f2fe 0%, #38bdf8 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.hero-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.15);
  border: 1px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-guarantee-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Media / Product Presentation Card */
.hero-media-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 242, 254, 0.15);
  backdrop-filter: blur(12px);
}

.product-image-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-media-card:hover .product-image-wrap img {
  transform: scale(1.02);
}

.product-floating-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

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

.price-block {
  display: flex;
  flex-direction: column;
}

.price-old {
  font-size: 0.95rem;
  color: var(--text-dim);
  text-decoration: line-through;
  font-family: var(--font-mono);
}

.price-current {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.product-rating-box {
  text-align: right;
}

.stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Sections Global */
.section {
  padding: 70px 0;
  position: relative;
}

.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Cyber Cards Grid */
.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

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

.cyber-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cyber-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-active);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(0, 242, 254, 0.15);
  background: var(--bg-card-hover);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  margin-bottom: 20px;
}

.card-icon-orange {
  background: rgba(249, 115, 22, 0.1);
  border-color: var(--border-orange);
  color: var(--neon-orange);
}

.card-icon-purple {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.5);
  color: var(--neon-purple);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Problem vs Solution Matrix */
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.matrix-col {
  border-radius: var(--radius-lg);
  padding: 36px;
}

.matrix-col-problem {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.matrix-col-solution {
  background: rgba(0, 242, 254, 0.06);
  border: 1px solid var(--border-active);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.1);
}

.matrix-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.matrix-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.matrix-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.matrix-icon-bad {
  color: var(--neon-red);
  font-weight: 800;
  font-size: 1.1rem;
}

.matrix-icon-good {
  color: var(--neon-cyan);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Ingredients Section */
.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ingredient-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 242, 254, 0.12);
  color: var(--neon-cyan);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 6px;
}

.ingredient-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.ingredient-action {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Expert / Doctor Section */
.expert-box {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.1);
}

.expert-avatar-wrap {
  text-align: center;
}

.expert-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 3px solid var(--neon-cyan);
  box-shadow: 0 0 25px var(--neon-cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.expert-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #e2e8f0;
  margin-bottom: 20px;
  line-height: 1.7;
}

.expert-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.expert-role {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon-cyan);
}

/* Reviews Grid */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--neon-cyan);
  font-family: var(--font-heading);
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.reviewer-tag {
  font-size: 0.75rem;
  color: var(--neon-cyan);
  font-family: var(--font-mono);
}

.verified-badge {
  font-size: 0.75rem;
  color: var(--neon-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Order Section & Form */
.order-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 50%, rgba(14, 26, 48, 0.9) 0%, #080c14 100%);
  border-top: 1px solid var(--border-active);
  border-bottom: 1px solid var(--border-active);
}

.order-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 0 50px rgba(0, 242, 254, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.order-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order-offer-box {
  background: rgba(0, 242, 254, 0.05);
  border: 1px dashed var(--border-active);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-control {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan-glow);
  background: #0f1a2e;
}

.form-control::placeholder {
  color: var(--text-dim);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 8px;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

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

.faq-item.active {
  border-color: var(--border-active);
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--neon-cyan);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
}

/* Trust Bar */
.trust-bar-section {
  padding: 40px 0;
  background: #0b111e;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Footer */
.site-footer {
  background: #05080e;
  border-top: 1px solid var(--border-subtle);
  padding-top: 60px;
  font-size: 0.9rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.legal-badge-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-tag {
  font-size: 0.78rem;
  color: var(--neon-cyan);
  font-family: var(--font-mono);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  padding-left: 4px;
}

.footer-contact-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer-contact-info strong {
  color: #e2e8f0;
}

.footer-disclaimer-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-disclaimer {
  background: rgba(14, 22, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-bottom {
  background: #030509;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.secure-badges {
  display: flex;
  gap: 16px;
}

.secure-item {
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Static Subpages Content Layout (EEAT & Compliance) */
.page-hero {
  padding: 50px 0 40px;
  background: linear-gradient(180deg, #0d1524 0%, #080c14 100%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.page-hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

.content-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-top: 40px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.content-box h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #fff;
  margin-top: 28px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.content-box h2:first-of-type {
  margin-top: 0;
}

.content-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--neon-cyan);
  margin-top: 20px;
  margin-bottom: 10px;
}

.content-box p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.content-box ul, .content-box ol {
  margin-left: 24px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.content-box li {
  margin-bottom: 8px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.map-embed-box {
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 240px;
}

.map-embed-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Checkout Success Page */
.checkout-success-card {
  max-width: 760px;
  margin: 50px auto 80px;
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: 0 0 60px rgba(0, 242, 254, 0.2);
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  margin: 0 auto 24px;
}

.order-badge-number {
  display: inline-block;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.checkout-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  text-align: left;
}

.checkout-step-item {
  background: rgba(14, 22, 38, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--neon-cyan);
  margin-bottom: 6px;
}

.step-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Toast Notifications */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111b2e;
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px var(--neon-cyan-glow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  animation: slide-up 0.4s ease-out;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .order-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .expert-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #090e18;
    flex-direction: column;
    padding: 24px 20px;
    border-bottom: 1px solid var(--border-active);
    gap: 18px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 98;
  }

  .nav-list.open {
    transform: translateY(0);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .hero-title {
    font-size: 2.1rem;
  }

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

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

  .checkout-steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
}
