/* ==========================================================================
   CzujnikiCzadu.com ➔ Moskal.pl - World-Class Agency Design System 2026
   ========================================================================== */

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

:root {
  /* Premium Dark Palette */
  --bg-dark: #060911;
  --bg-surface: #0b1120;
  --bg-card: #111a2e;
  --bg-card-hover: #18243f;
  --bg-card-active: #1e2e50;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-inverse: #060911;

  /* Brand Accents */
  --brand-orange: #ff7300;
  --brand-orange-hover: #e06500;
  --brand-orange-glow: rgba(255, 115, 0, 0.3);
  
  --brand-red: #ef4444;
  --brand-red-glow: rgba(239, 68, 68, 0.25);
  
  --brand-blue: #0284c7;
  --brand-blue-hover: #0369a1;
  --brand-blue-glow: rgba(2, 132, 199, 0.3);
  
  --brand-emerald: #10b981;
  --brand-emerald-glow: rgba(16, 185, 129, 0.3);

  --trust-gold: #fbbf24;

  /* Glassmorphism & Borders */
  --glass-bg: rgba(11, 17, 32, 0.88);
  --glass-card: rgba(17, 26, 46, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 115, 0, 0.35);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow-orange: 0 0 35px rgba(255, 115, 0, 0.35);
  --shadow-glow-blue: 0 0 35px rgba(2, 132, 199, 0.35);

  /* Radius & Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --container-width: 1260px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 115, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(2, 132, 199, 0.05) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  color: #38bdf8;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Reading Progress Bar */
.reading-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 1000;
}

.reading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-red));
  box-shadow: 0 0 12px var(--brand-orange);
  transition: width 0.1s ease-out;
}

/* Top Live Stock & Trust Bar */
.trust-banner-top {
  background: #04070e;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.82rem;
  padding: 8px 0;
  color: var(--text-muted);
}

.trust-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.live-stock-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4ade80;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 9, 17, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
}

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

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

.brand-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: var(--shadow-glow-orange);
  transition: transform var(--transition-bounce);
}

.brand-logo:hover .brand-logo-icon {
  transform: scale(1.08) rotate(-4deg);
}

.brand-tag {
  font-size: 0.72rem;
  font-weight: 800;
  background: rgba(2, 132, 199, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(2, 132, 199, 0.4);
  padding: 3px 9px;
  border-radius: 6px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-orange);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-orange), #d95500);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 115, 0, 0.35);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #ff851a, #e65c00);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 115, 0, 0.55);
}

.btn--secondary {
  background: var(--glass-card);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
}

.btn--secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  color: white;
  transform: translateY(-2px);
}

.btn--moskal {
  background: linear-gradient(135deg, var(--brand-blue), #025a8d);
  color: white;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.btn--moskal:hover {
  background: linear-gradient(135deg, #0294e0, #024f7c);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.55);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.08rem;
  border-radius: var(--radius-md);
}

/* Mobile Drawer */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-surface);
  z-index: 1100;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid var(--glass-border);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
}

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

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Hero Section Agency Style */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 115, 0, 0.12);
  border: 1px solid rgba(255, 115, 0, 0.35);
  border-radius: var(--radius-full);
  color: #ff9d47;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.6rem;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  line-height: 1.12;
}

.hero-title span {
  background: linear-gradient(135deg, var(--brand-orange), #ffaa5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 620px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
}

.trust-metric {
  display: flex;
  flex-direction: column;
}

.trust-metric-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
}

.trust-metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Agency Interactive Product Card Preview */
.hero-card {
  position: relative;
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
}

.hero-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow-orange);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-card-img-placeholder {
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, #1e2c4a 0%, #0d1628 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.4);
}

.hero-card-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 10px 14px;
  background: rgba(4, 7, 14, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-label {
  color: var(--text-muted);
}

.spec-value {
  font-weight: 700;
  color: var(--text-main);
}

/* Common Section */
.section {
  padding: 90px 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-subtitle {
  color: var(--brand-orange);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

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

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-normal);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 115, 0, 0.12);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 115, 0, 0.25);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Quiz Container */
.quiz-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 880px;
  margin: 0 auto;
}

.quiz-step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-orange);
}

.quiz-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33.3%;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
  transition: width var(--transition-normal);
}

.quiz-step {
  display: none;
  animation: fadeInUp 0.4s ease-out forwards;
}

.quiz-step.active {
  display: block;
}

.quiz-question-title {
  font-size: 1.7rem;
  margin-bottom: 28px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.option-card {
  background: rgba(6, 9, 17, 0.6);
  border: 2px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 22px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 16px;
}

.option-card:hover {
  border-color: rgba(255, 115, 0, 0.5);
  background: rgba(255, 115, 0, 0.06);
  transform: translateY(-3px);
}

.option-card.selected {
  border-color: var(--brand-orange);
  background: rgba(255, 115, 0, 0.14);
  box-shadow: 0 0 20px rgba(255, 115, 0, 0.25);
}

.option-icon {
  font-size: 2rem;
}

.option-title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

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

.quiz-nav-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

/* Products & Articles Grid */
.products-grid, .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.product-card, .article-card {
  background: var(--glass-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.product-card:hover, .article-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 132, 199, 0.45);
  box-shadow: var(--shadow-lg);
}

.product-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--brand-orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

/* Modals & Forms */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 40px;
  position: relative;
  transform: translateY(24px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Footer */
.site-footer {
  background: #03050a;
  border-top: 1px solid var(--glass-border);
  padding: 70px 0 35px;
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
}

/* Toast Copy Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--brand-emerald);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .quiz-wrapper {
    padding: 24px;
  }
}

/* ==========================================================================
   Navigation Dropdown Menu Styling (Fix overlay & positioning bug)
   ========================================================================== */
.nav-dropdown {
  position: relative;
  padding-bottom: 12px; /* Smooth padding bridge */
  margin-bottom: -12px;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(10, 17, 32, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  z-index: 2000;
  min-width: 540px;
  padding: 20px;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Invisible Hover Bridge to prevent losing hover state when moving cursor down */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

/* Show dropdown smooth on hover */
.nav-dropdown:hover .dropdown-content,
.nav-dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dropdown-header {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-orange);
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--glass-border);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.dropdown-icon {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}

.dropdown-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 2px;
}

.dropdown-desc {
  font-size: 0.76rem;
  color: var(--text-muted) !important;
  line-height: 1.35;
}

/* Mobile Sticky Bottom Bar & Quick Contact Drawer */
.mobile-sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 9, 17, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  padding: 10px 14px;
  z-index: 1000;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}

.quick-contact-drawer {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 520px;
  background: var(--bg-surface);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border: 1px solid var(--glass-border);
  border-bottom: none;
  padding: 24px 24px 32px;
  z-index: 1200;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.7);
  transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  pointer-events: none;
}

.quick-contact-drawer.open {
  bottom: 0;
  visibility: visible;
  pointer-events: auto;
}

/* ==========================================================================
   Missing Global Utility Styles (fixes & additions)
   ========================================================================== */

/* Trust Top Bar Badge Items */
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.trust-badge-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Form inputs */
.form-input {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 0.97rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px rgba(255, 115, 0, 0.15);
}

/* Product Card — needs relative for absolute badge */
.product-card {
  position: relative;
}

/* Product card title */
.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

/* Article card inner */
.article-card-thumb {
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.article-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.article-tag {
  background: rgba(255, 115, 0, 0.15);
  color: var(--brand-orange);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.article-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  color: var(--text-main);
}

.article-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

.article-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
}

.article-card-footer a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-orange);
}

.article-card-footer a:hover { color: #ffaa5e; }

/* Fade-in-up keyframe used by quiz steps */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
