/* ============================================
   DOSSIER EKSPEDYCJI - NOWOCZESNY STYL
   Paleta: ciemne tony / akcenty / elegancja
   ============================================ */

:root {
  --primary-dark: #1a1a1a;
  --primary-medium: #2d2d2d;
  --primary-light: #4a4a4a;
  --accent-gold: #d4af37;
  --accent-gold-light: #e8c547;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6b6b6b;
  --border-color: #e0e0e0;
}

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

body {
  font-family: 'Inter', 'Crimson Text', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
	position: relative;
}

.container {
  max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Compliance Banner */
.compliance-banner {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--primary-medium) 100%);
  color: var(--bg-white);
  padding: 15px 0;
	text-align: center;
	font-size: 12px;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-dark);
  position: sticky;
top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.compliance-banner p {
    margin: 0;
  line-height: 1.5;
}

/* Sticky Navigation */
.nav-sticky {
  background: rgba(26, 26, 26, 0.98);
  padding: 15px 0;
  position: sticky;
  top: 50px;
  z-index: 999;
  border-bottom: 1px solid var(--accent-gold);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-menu {
list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.nav-menu li a {
  color: var(--bg-white);
    text-decoration: none;
  font-family: 'Inter', 'Source Code Pro', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
	position: relative;
}

.nav-menu li a::after {
  content: '';
    position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--accent-gold);
}

.nav-menu li a:hover::after {
width: 100%;
}

/* Hero / Dossier Cover */
.hero-dossier {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.dossier-cover {
    position: relative;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  padding: 60px 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
}

.page-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Inter', monospace;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
  opacity: 0.6;
}

.stamp {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  top: 20px;
  right: 20px;
  opacity: 0.4;
}

.stamp::before {
  content: '✓';
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: var(--accent-gold);
  font-weight: 700;
}

.dossier-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  color: var(--primary-dark);
    text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  position: relative;
}

.dossier-title::after {
  content: '';
    display: block;
  width: 120px;
  height: 3px;
  background: var(--accent-gold);
  margin: 25px auto;
  border-radius: 2px;
}

.dossier-subtitle {
  font-family: 'Crimson Text', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--text-medium);
    text-align: center;
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-seal, .btn-report {
  padding: 16px 32px;
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  font-weight: 600;
    text-decoration: none;
  border: 2px solid var(--black);
  position: relative;
  transition: all 0.3s ease;
    text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-seal {
  background: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  border-radius: 6px;
}

.btn-seal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: var(--accent-gold-light);
}

.btn-report {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-medium);
  border-radius: 6px;
}

.btn-report:hover {
  background: var(--primary-dark);
  color: var(--bg-white);
  border-color: var(--primary-dark);
}

.product-image-hero {
  text-align: center;
  margin: 30px 0;
  padding: 0;
}

.hero-product-img {
  max-width: 200px;
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
  background: transparent;
}


.dossier-meta {
  display: flex;
  justify-content: space-between;
    margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-family: 'Inter', monospace;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

/* Document Modules */
.document-module {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 50px 40px;
  margin: 60px auto;
  max-width: 1000px;
    position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.document-module.fade-in-visible {
    opacity: 1;
  transform: translateY(0);
}

.document-header {
  margin-bottom: 40px;
    position: relative;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
  color: var(--primary-dark);
    text-align: center;
margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.document-line {
  width: 120px;
  height: 3px;
  background: var(--accent-gold);
  margin: 0 auto;
    position: relative;
  border-radius: 2px;
}

.document-line::before,
.document-line::after {
  content: '';
    position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.document-line::before {
  left: -20px;
}

.document-line::after {
  right: -20px;
}

/* Report Section */
.report-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-medium);
}

.report-entry {
  margin-bottom: 30px;
  padding-left: 30px;
  border-left: 3px solid var(--accent-gold);
    position: relative;
}

.report-entry::before {
  content: '▸';
  position: absolute;
  left: -10px;
  color: var(--accent-gold);
  font-size: 20px;
  font-weight: 700;
}

.entry-date {
  font-family: 'Inter', monospace;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Mechanisms Grid */
.mechanisms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
    margin-top: 40px;
}

.mechanism-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 30px 20px;
    text-align: center;
   position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.mechanism-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--accent-gold);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', monospace;
  font-size: 10px;
  color: var(--accent-gold);
  font-weight: 600;
  background: rgba(212, 175, 55, 0.1);
}

.mechanism-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.mechanism-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-medium);
}

/* Ingredients */
.ingredients-list {
  display: grid;
  gap: 25px;
    margin-top: 40px;
}

.ingredient-item {
  padding: 25px;
  background: var(--bg-white);
  border-left: 3px solid var(--accent-gold);
	position: relative;
  border-radius: 4px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ingredient-item::before {
  content: '●';
  position: absolute;
  left: -10px;
  top: 25px;
  color: var(--accent-gold);
  font-size: 20px;
}

.ingredient-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary-dark);
    margin-bottom: 10px;
  font-weight: 600;
}

.ingredient-item p {
    font-size: 16px;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 10px;
}

.ingredient-source {
  font-family: 'Inter', monospace;
    font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 500;
}

.ingredient-source a {
  color: var(--accent-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.ingredient-source a:hover {
  color: var(--accent-gold-light);
}

/* Sources */
.sources-content {
  margin-top: 30px;
}

.sources-note {
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid var(--accent-gold);
  padding: 15px 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--text-medium);
  border-radius: 4px;
}

.sources-list {
  list-style: none;
  counter-reset: source-counter;
  padding-left: 0;
}

.sources-list li {
  counter-increment: source-counter;
  padding: 15px 0 15px 40px;
  border-bottom: 1px solid var(--border-color);
    position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-medium);
}

.sources-list li::before {
  content: '[' counter(source-counter) ']';
  position: absolute;
  left: 0;
  font-family: 'Inter', monospace;
  font-weight: 600;
  color: var(--accent-gold);
}

.sources-list li a {
  color: var(--accent-gold);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.sources-list li a:hover {
  color: var(--accent-gold-light);
}

.sources-disclaimer {
 margin-top: 30px;
  padding: 15px;
  background: rgba(45, 45, 45, 0.05);
  border: 1px solid var(--border-color);
  font-size: 13px;
  font-style: italic;
  color: var(--text-medium);
  border-radius: 4px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
margin-top: 40px;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 25px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-family: 'Playfair Display', serif;
    font-size: 60px;
  color: var(--accent-gold);
  opacity: 0.2;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: var(--accent-gold);
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 15px;
  font-style: italic;
    position: relative;
  z-index: 1;
}

.review-author {
  font-family: 'Inter', monospace;
  font-size: 12px;
  color: var(--text-light);
  text-align: right;
  font-weight: 500;
}

/* FAQ */
.faq-list {
    margin-top: 40px;
}

.faq-item {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--bg-white);
  border-left: 3px solid var(--accent-gold);
  position: relative;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--primary-dark);
    margin-bottom: 15px;
  font-weight: 600;
    position: relative;
  padding-left: 35px;
}

.faq-question::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
    font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.faq-answer {
    font-size: 16px;
  line-height: 1.8;
  color: var(--text-medium);
  padding-left: 35px;
}

/* Order Section */
.order-module {
  background: var(--bg-white);
}

.compliance-banner-inline {
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid var(--accent-gold);
  padding: 15px 20px;
  margin: 30px 0;
    text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  border-radius: 6px;
}

.order-form-wrapper {
  margin-top: 40px;
}

.order-form-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
  font-family: 'Inter', monospace;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.order-cta-box {
  margin: 40px 0;
  padding: 40px;
  text-align: center;
  background: var(--bg-white);
  border: 2px dashed var(--border-color);
  border-radius: 8px;
}

.order-intro {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 30px;
  font-style: italic;
}

.btn-order {
  display: inline-block;
    margin: 0 auto;
}

.order-trust-line {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  font-family: 'Inter', monospace;
  font-size: 12px;
  color: var(--text-light);
  flex-wrap: wrap;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--primary-dark);
  color: var(--bg-white);
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 3px solid var(--accent-gold);
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--accent-gold);
  margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: var(--bg-white);
    text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
    position: relative;
  padding-left: 15px;
}

.footer-column a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent-gold);
}

.footer-column a:hover::before {
  transform: translateX(3px);
}

.footer-note {
  font-size: 12px;
  color: var(--bg-white);
  opacity: 0.8;
  font-style: italic;
}

.footer-bottom {
    text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 12px;
  color: var(--bg-white);
  opacity: 0.8;
}

.footer-disclaimer {
  margin-top: 10px;
  font-size: 11px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .dossier-cover {
    padding: 40px 20px;
  }
  
  .document-module {
    padding: 30px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-seal, .btn-report {
width: 100%;
    max-width: 300px;
  }
  
  .mechanisms-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .order-form-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .order-trust-line {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .nav-menu {
    gap: 15px;
  }
  
  .nav-menu li a {
    font-size: 11px;
  }
}

/* Subtle parallax effect */
@media (min-width: 769px) {
  .document-module {
    transition: transform 0.3s ease;
  }
  
  .document-module:hover {
    transform: translateY(-2px);
  }
}

/* Print styles */
@media print {
  .nav-sticky,
  .compliance-banner,
  .hero-cta,
  .order-form-container {
    display: none;
  }
  
  .document-module {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #000;
  }
}
