@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --bg-base:       #0D0D0D;
  --bg-card:       #141414;
  --bg-card-hover: #1A1A1A;
  --bg-glass:      rgba(20, 20, 20, 0.7);
  --primary:       #D4A853;
  --primary-d:     #B8923E;
  --primary-l:     #E8C070;
  --secondary:     #7BAE7F;
  --accent:       #E85D4C;
  --text-main:     #F0EDE6;
  --text-muted:    #888580;
  --text-dim:      #555250;
  --border:        rgba(212, 168, 83, 0.12);
  --border-hover:  rgba(212, 168, 83, 0.4);
  --glow:          rgba(212, 168, 83, 0.08);
  --shadow:        0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.4);
  --r-global:      4px;
  --r-card:        6px;
  --r-btn:         100px;
  --font-display:  'Bebas Neue', Impact, sans-serif;
  --font-body:     'Nunito Sans', system-ui, sans-serif;
  --t-fast:        all 0.2s ease;
  --t-mid:         all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow:        all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.page-wrapper { min-height: 100vh; }

.container-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* ═══════════════════════════════════════
   PRELOADER
═══════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg-base);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; width: 100%; }
.preloader-bar-track {
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.06);
  margin: 24px auto 0;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-d), var(--primary-l), var(--primary-d));
  border-radius: 2px;
  animation: preloader-fill 3s ease-in-out forwards;
}
@keyframes preloader-fill {
  from { width: 0; }
  to { width: 100%; }
}
.preloader-text-main {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 8px;
  color: var(--primary);
  line-height: 1;
}
.preloader-text-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--t-mid);
}
.header-top-bar {
  background: var(--primary);
  text-align: center;
  padding: 5px 16px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.5px;
  color: #0D0D0D;
  font-weight: 600;
}
.header-main {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.header-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.header-logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.header-logo:hover .header-logo-icon { transform: rotate(-6deg) scale(1.05); }
.header-logo-icon svg { width: 22px; height: 22px; }
.header-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--text-main);
}
.header-nav {
  display: flex; align-items: center; gap: 36px;
}
.header-nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast);
}
.header-nav-link::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--primary);
  transition: width var(--t-mid);
}
.header-nav-link:hover { color: var(--text-main); }
.header-nav-link:hover::after,
.header-nav-link.is-active::after { width: 100%; }
.header-nav-link.is-active { color: var(--primary); }
.header-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.header-hamburger-line {
  display: block; width: 24px; height: 2px;
  background: var(--text-main); border-radius: 2px;
  transition: var(--t-mid);
}
.header-hamburger.is-open .header-hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header-hamburger.is-open .header-hamburger-line:nth-child(2) { opacity: 0; }
.header-hamburger.is-open .header-hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(13, 13, 13, 0.99); backdrop-filter: blur(24px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
  opacity: 0; visibility: hidden; transition: var(--t-mid);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav .header-nav-link { font-size: 1.2rem; letter-spacing: 4px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 70px;
  position: relative; overflow: hidden;
}
.hero-content-side {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 48px 80px calc(40px + 3vw);
  position: relative; z-index: 2;
}
.hero-badge-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,168,83,0.08);
  border: 1px solid var(--border);
  border-radius: var(--r-global);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink {
  0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(212,168,83,0.4)}
  50%{opacity:0.5;box-shadow:0 0 0 6px rgba(212,168,83,0)}
}
.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 3px;
  color: #000000;
  margin-bottom: 24px;
}
.hero-heading em {
  font-style: normal;
  color: var(--primary);
  display: block;
}
.hero-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 400px;
  margin-bottom: 40px;
  line-height: 1.85;
}
.hero-actions-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-visual-side {
  position: relative;
  background: #111;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-image-wrapper {
  width: 100%; height: 100%;
  position: relative;
}
.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}
.hero-image-wrapper:hover .hero-image { transform: scale(1.05); }
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0) 30%, rgba(13,13,13,0.5) 100%);
}
.hero-float-card {
  position: absolute;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.hero-float-card.is-top-right { top: 48px; right: 32px; animation: float-y 4s ease-in-out infinite; }
.hero-float-card.is-bottom-left { bottom: 48px; left: 32px; animation: float-y 4s ease-in-out infinite 1.8s; }
@keyframes float-y {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}
.hero-float-icon-box {
  width: 44px; height: 44px;
  background: rgba(212,168,83,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-icon-box svg { width: 20px; height: 20px; color: var(--primary); }
.hero-float-label {
  font-family: var(--font-body);
  font-size: 0.65rem; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
}
.hero-float-value {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--text-main);
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-main {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: var(--t-mid);
  border: 2px solid transparent;
  white-space: nowrap;
  box-sizing: border-box;
}
.btn-main.is-primary {
  background: var(--primary);
  color: #0D0D0D;
  border-color: var(--primary);
}
.btn-main.is-primary:hover {
  background: var(--primary-l);
  border-color: var(--primary-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,168,83,0.3);
}
.btn-main.is-outline {
  background: transparent;
  color: #000000;
  border-color: var(--border-hover);
}
.btn-main.is-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-main.is-dark {
  background: var(--text-main);
  color: var(--bg-base);
  border-color: var(--text-main);
}
.btn-main.is-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.btn-main.is-accent {
  background: var(--primary);
  color: #0D0D0D;
  border-color: var(--primary);
}
.btn-main.is-accent:hover {
  background: var(--primary-d);
  border-color: var(--primary-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,168,83,0.3);
}
.btn-icon { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.trust-grid {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon-box {
  width: 48px; height: 48px;
  background: rgba(212,168,83,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon-box svg { width: 22px; height: 22px; color: var(--primary); }
.trust-label {
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
}
.trust-sublabel {
  font-family: var(--font-body);
  font-size: 0.68rem; color: var(--text-muted);
}

/* ═══════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 700;
  color: var(--primary);
  letter-spacing: 5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 3px;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.section-description {
  font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.8;
}
.section-divider-line {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--primary-d), var(--primary-l));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   PRODUCT SHOWCASE
═══════════════════════════════════════ */
.showcase-section {
  background: var(--bg-base);
}
.showcase-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.gallery-wrapper { position: relative; }
.gallery-main-box {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
}
.gallery-main-image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-main-box:hover .gallery-main-image { transform: scale(1.05); }
.gallery-shine {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(212,168,83,0.05), transparent 60%);
  pointer-events: none;
}
.gallery-thumb-row { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumb-item {
  width: 76px; height: 76px;
  border-radius: var(--r-global);
  border: 2px solid var(--border);
  overflow: hidden; cursor: pointer;
  transition: border-color var(--t-fast);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
}
.gallery-thumb-item:hover,
.gallery-thumb-item.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.15);
}
.gallery-thumb-image { width: 100%; height: 100%; object-fit: cover; }
.product-info-col { }
.product-tag-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,168,83,0.08);
  border: 1px solid var(--border);
  border-radius: var(--r-global);
  padding: 5px 14px;
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
}
.product-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 3px;
  line-height: 1;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.price-main {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--primary);
  letter-spacing: 1px;
}
.price-note {
  font-family: var(--font-body);
  font-size: 0.75rem; color: var(--text-dim);
}
.product-description {
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 24px;
}
.specs-list { margin-bottom: 24px; }
.specs-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.specs-check {
  width: 22px; height: 22px;
  background: rgba(123,174,127,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.specs-check svg { width: 11px; height: 11px; color: var(--secondary); }
.specs-label { color: var(--text-muted); min-width: 130px; font-family: var(--font-body); font-size: 0.85rem; }
.specs-value { color: var(--text-main); font-weight: 600; font-family: var(--font-body); font-size: 0.85rem; }
.product-actions-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features-section {
  background: var(--bg-card);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px 26px;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary-d), var(--primary-l));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon-box {
  width: 52px; height: 52px;
  background: rgba(212,168,83,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-box svg { width: 24px; height: 24px; color: var(--primary); }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: 2px;
  color: var(--text-main);
  margin-bottom: 10px;
}
.feature-text {
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.75;
}
.stats-bar {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stats-item { text-align: center; }
.stats-number {
  font-family: var(--font-display);
  font-size: 3rem; color: var(--primary);
  letter-spacing: 2px; line-height: 1; margin-bottom: 6px;
}
.stats-label {
  font-family: var(--font-body);
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section { background: var(--bg-base); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 32px;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem; color: var(--primary);
  opacity: 0.15;
  position: absolute; top: 8px; right: 24px;
  line-height: 1;
}
.stars-row { display: flex; gap: 2px; margin-bottom: 14px; }
.star-item { color: var(--primary); font-size: 0.9rem; }
.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-d), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem; color: #0D0D0D; letter-spacing: 1px; flex-shrink: 0;
}
.author-name {
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 700; color: var(--text-main);
}
.author-date {
  font-family: var(--font-body);
  font-size: 0.68rem; color: var(--text-dim);
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section { background: var(--bg-card); }
.faq-list-max { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  margin-bottom: 8px;
  background: var(--bg-base);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  background: none; border: none;
  font-family: var(--font-body);
  font-size: 0.93rem; font-weight: 500;
  color: var(--text-main);
  padding: 20px 26px;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--primary); }
.faq-chevron {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-mid);
}
.faq-chevron svg { width: 12px; height: 12px; color: var(--primary); }
.faq-item.is-open .faq-chevron {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(180deg);
}
.faq-item.is-open .faq-chevron svg { color: #0D0D0D; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer-inner {
  padding: 0 26px 20px;
  font-family: var(--font-body);
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.8;
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-block {
  background: var(--bg-card);
  text-align: center;
  position: relative; overflow: hidden;
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-bg-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(212,168,83,0.06), transparent 70%);
  pointer-events: none;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 3px;
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 14px;
  position: relative;
}
.cta-heading em { font-style: normal; color: var(--primary); }
.cta-subtext {
  font-family: var(--font-body);
  font-size: 0.95rem; color: var(--text-muted);
  margin-bottom: 40px; position: relative;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #080808;
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid-layout {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-brand-text {
  font-family: var(--font-body);
  font-size: 0.85rem; color: rgba(240,237,230,0.4);
  line-height: 1.8; max-width: 260px; margin-top: 14px;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(240,237,230,0.8);
  margin-bottom: 18px;
}
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-link-item {
  font-family: var(--font-body);
  font-size: 0.85rem; color: rgba(240,237,230,0.35);
  text-decoration: none;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-link-item:hover { color: var(--primary-l); padding-left: 4px; }
.footer-bottom-row {
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  max-width: 1320px; margin: 0 auto;
}
.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.72rem; color: rgba(240,237,230,0.2);
}

/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  z-index: 10000;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-icon-box {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(212,168,83,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.cookie-icon-box svg { width: 20px; height: 20px; color: var(--primary); }
.cookie-message {
  font-family: var(--font-body);
  font-size: 0.85rem; color: rgba(240,237,230,0.5);
  flex: 1; line-height: 1.6;
}
.cookie-message-link { color: var(--primary-l); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-action {
  padding: 10px 22px;
  border-radius: var(--r-btn);
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: var(--t-mid);
  cursor: pointer; border: 2px solid transparent;
}
.cookie-btn-action.is-accept {
  background: var(--primary); color: #0D0D0D; border-color: var(--primary);
}
.cookie-btn-action.is-accept:hover {
  background: var(--primary-l); border-color: var(--primary-l);
  transform: translateY(-1px);
}
.cookie-btn-action.is-reject {
  background: transparent;
  color: rgba(240,237,230,0.4);
  border-color: rgba(255,255,255,0.1);
}
.cookie-btn-action.is-reject:hover {
  border-color: rgba(255,255,255,0.25);
  color: rgba(240,237,230,0.7);
}

/* ═══════════════════════════════════════
   REVIEW PAGE
═══════════════════════════════════════ */
.review-hero-section {
  padding: 150px 0 64px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.rating-display { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 20px; }
.rating-big-number {
  font-family: var(--font-display);
  font-size: 5rem; color: var(--primary);
  letter-spacing: 2px; line-height: 1;
}
.rating-meta-col { text-align: left; }
.rating-stars-row { display: flex; gap: 2px; }
.rating-label-text {
  font-family: var(--font-body);
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}
.review-body-section { padding: 72px 0; }
.review-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.review-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 2px;
  color: var(--text-main);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.pros-box, .cons-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px;
}
.pros-box { border-color: rgba(123,174,127,0.3); }
.cons-box { border-color: rgba(232,93,76,0.25); }
.pros-cons-title {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 2px;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.pros-cons-title.is-pros { color: var(--secondary); }
.pros-cons-title.is-cons { color: var(--accent); }
.pros-cons-list { display: flex; flex-direction: column; gap: 10px; }
.pros-item, .cons-item {
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.5;
}
.pros-item::before { content: '✓'; color: var(--secondary); font-weight: 700; flex-shrink: 0; }
.cons-item::before { content: '–'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.review-text-block {
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 14px;
}
.verdict-box {
  background: rgba(212,168,83,0.05);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--r-card);
  padding: 28px; margin-top: 24px;
}
.verdict-title {
  font-family: var(--font-display);
  font-size: 1.2rem; letter-spacing: 2px;
  color: var(--primary); margin-bottom: 10px;
}
.verdict-text {
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px; margin-bottom: 16px;
}
.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 2px;
  color: #FFFFFF; margin-bottom: 14px;
}
.quick-facts-list { }
.quick-fact-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.quick-fact-row:last-child { border-bottom: none; }
.quick-fact-key {
  font-family: var(--font-body);
  font-size: 0.8rem; color: #FFFFFF;
}
.quick-fact-val {
  font-family: var(--font-body);
  font-size: 0.8rem; color: #FFFFFF; font-weight: 600;
}
.sidebar-shop-card {
  background: rgba(212,168,83,0.04);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--r-card);
  padding: 24px;
}
.sidebar-shop-title {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 2px;
  color: #FFFFFF; margin-bottom: 12px;
}
.sidebar-shop-text {
  font-family: var(--font-body);
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 18px;
}

/* ═══════════════════════════════════════
   ORDER PAGE
═══════════════════════════════════════ */
.order-page-section { padding: 130px 0 72px; }
.order-center-wrapper { display: flex; justify-content: center; width: 100%; max-width: 520px; margin: 0 auto 52px; }
.order-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 36px; width: 100%;
  box-shadow: var(--shadow);
}
.order-product-image-box {
  width: 100%; aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: var(--r-global);
  border: 1px solid var(--border);
  margin-bottom: 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.order-product-image { width: 100%; height: 100%; object-fit: cover; }
.order-product-name {
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 2px;
  color: #FFFFFF; margin-bottom: 6px; text-align: center;
}
.order-product-sub {
  font-family: var(--font-body);
  font-size: 0.8rem; color: #FFFFFF;
  text-align: center; margin-bottom: 18px;
}
.order-price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.order-price-label {
  font-family: var(--font-body);
  font-size: 0.85rem; color: #FFFFFF;
}
.order-price-val {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--primary); letter-spacing: 1px;
}
.order-perks-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; max-width: 300px; margin-left: auto; margin-right: auto; }
.order-perk-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem; color: #FFFFFF;
}
.order-perk-check { width: 16px; height: 16px; color: var(--secondary); flex-shrink: 0; }
.comp-section { margin-top: 44px; }
.comp-table {
  width: 100%; border-collapse: collapse; margin-top: 14px;
  table-layout: fixed;
}
.comp-table th, .comp-table td {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.comp-table th {
  color: #FFFFFF; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  font-size: 0.68rem;
}
.comp-table td { color: #FFFFFF; }
.comp-table td:first-child { color: #FFFFFF; font-weight: 500; }
.comp-table td.is-checked { color: var(--secondary); font-weight: 700; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-page-section { padding: 130px 0 72px; }
.order-page-section .section-heading, .contact-page-section .section-heading { color: #000000; }
.order-page-section .section-description, .contact-page-section .section-description { color: #555555; }
.contact-grid-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-intro-text {
  font-family: var(--font-body);
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 32px;
}
.contact-methods-list { display: flex; flex-direction: column; gap: 12px; }
.contact-method-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.contact-method-item:hover { border-color: var(--primary); box-shadow: var(--shadow-card); }
.contact-method-icon-box {
  width: 46px; height: 46px;
  background: rgba(212,168,83,0.08);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-method-icon-box svg { width: 20px; height: 20px; color: var(--primary); }
.contact-method-key {
  font-family: var(--font-body);
  font-size: 0.65rem; color: #FFFFFF;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px;
}
.contact-method-val {
  font-family: var(--font-body);
  font-size: 0.9rem; color: #FFFFFF; font-weight: 500;
}
.contact-method-val a { color: #FFFFFF; text-decoration: none; transition: color var(--t-fast); }
.contact-method-val a:hover { color: var(--primary); }
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 36px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 2px;
  color: #FFFFFF; margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-label-text {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 600;
  color: #FFFFFF; letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.form-input-field {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-global);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 13px 16px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-input-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,168,83,0.1); }
.form-input-field::placeholder { color: var(--text-dim); }
.form-select-field {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-global);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 13px 16px;
  transition: border-color var(--t-fast);
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' fill='%23D4A853' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-select-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,168,83,0.1); }
.form-select-field option { background: var(--bg-card); color: var(--text-main); }
.form-textarea-field {
  width: 100%;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-global);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 13px 16px;
  transition: border-color var(--t-fast);
  outline: none;
  min-height: 110px; resize: vertical;
}
.form-textarea-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,168,83,0.1); }
.form-textarea-field::placeholder { color: var(--text-dim); }
.form-checkbox-row {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem; color: var(--text-muted); cursor: pointer;
  margin-bottom: 18px;
}
.form-checkbox-input { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }
.form-checkbox-link { color: var(--primary-l); text-decoration: underline; }
.submit-success-box { display: none; text-align: center; padding: 36px; }
.submit-success-box.is-visible { display: block; }
.success-icon-box {
  width: 60px; height: 60px;
  background: rgba(123,174,127,0.12);
  border: 1px solid rgba(123,174,127,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.success-icon-box svg { width: 26px; height: 26px; color: var(--secondary); }
.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 2px;
  color: var(--text-main); margin-bottom: 10px;
}
.success-message {
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--text-muted);
}

/* ═══════════════════════════════════════
   THANK YOU MODAL
═══════════════════════════════════════ */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0.75);
  backdrop-filter: blur(6px);
}
.modal-content-box {
  position: relative; z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--r-card);
  padding: 42px 32px 32px;
  max-width: 460px; width: 90%;
  text-align: center;
  box-shadow: var(--shadow);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-overlay.is-open .modal-content-box { transform: scale(1) translateY(0); }
.modal-close-btn {
  position: absolute; top: 14px; right: 18px;
  background: transparent; border: none;
  font-size: 24px; line-height: 1;
  color: var(--text-muted); cursor: pointer;
  transition: color var(--t-fast), transform var(--t-fast);
}
.modal-close-btn:hover { color: var(--primary); transform: scale(1.15); }
.modal-icon-circle {
  width: 68px; height: 68px;
  background: rgba(123,174,127,0.12);
  border: 1px solid rgba(123,174,127,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.modal-icon-circle svg { width: 32px; height: 32px; color: var(--secondary); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.7rem; letter-spacing: 2px;
  color: var(--text-main); margin-bottom: 12px;
}
.modal-text {
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6; margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════ */
.legal-page-section { padding: 130px 0 72px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-page-title {
  font-family: var(--font-display);
  font-size: 2.8rem; letter-spacing: 3px;
  color: var(--text-main); margin-bottom: 8px;
}
.legal-date {
  font-family: var(--font-body);
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 36px;
}
.legal-block { margin-bottom: 30px; }
.legal-block-title {
  font-family: var(--font-display);
  font-size: 1.1rem; letter-spacing: 2px;
  color: var(--text-main); margin-bottom: 12px;
}
.legal-text {
  font-family: var(--font-body);
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 10px;
}
.legal-list { padding-left: 18px; margin-bottom: 10px; }
.legal-list-item {
  font-family: var(--font-body);
  font-size: 0.88rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 5px;
  list-style: disc;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-element.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   ORDER PAGE
═══════════════════════════════════════ */
.order-page-section { padding: 140px 0 80px; }
.order-center-wrapper { max-width: 560px; margin: 0 auto 60px; }
.order-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}
.order-product-image-box { margin-bottom: 20px; }
.order-product-image-box img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.order-product-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #FFFFFF;
  margin: 0 0 8px;
}
.order-product-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #FFFFFF;
  margin: 0 0 24px;
  letter-spacing: 0.05em;
}
.order-price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--bg-base);
  border-radius: 10px;
}
.order-price-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #FFFFFF;
}
.order-price-val {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
}
.order-perks-list {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #FFFFFF;
}
.order-perk-check {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.comp-section { margin-top: 20px; }
.review-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin: 0 0 24px;
  letter-spacing: 0.03em;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 0.9rem;
  table-layout: fixed;
}
.comp-table thead tr { background: var(--bg-base); }
.comp-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: #FFFFFF;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}
.comp-table td {
  padding: 12px 18px;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table .is-checked { color: var(--primary); font-weight: 600; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-page-section { padding: 140px 0 80px; }
.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-intro-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 36px;
}
.contact-methods-list { display: flex; flex-direction: column; gap: 20px; }
.contact-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.contact-method-icon-box {
  width: 44px;
  height: 44px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon-box svg { width: 20px; height: 20px; color: var(--primary); }
.contact-method-key {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-method-val {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #FFFFFF;
}
.contact-method-val a { color: #FFFFFF; text-decoration: none; transition: color 0.2s; }
.contact-method-val a:hover { color: var(--primary); }
.contact-form-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 0 0 28px;
}
.form-checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.form-checkbox-input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox-link { color: var(--primary); text-decoration: none; }
.form-checkbox-link:hover { text-decoration: underline; }
.submit-success-box { display: none; }
.submit-success-box.is-visible { display: block; }

/* ═══════════════════════════════════════
   MODAL
═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: all; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal-content-box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}
.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.modal-close-btn:hover { color: var(--text-primary); }
.modal-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(212,168,83,0.12);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.modal-icon-circle svg { width: 28px; height: 28px; color: var(--primary); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.modal-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 28px;
}
.modal-ok-btn { display: block; margin: 0 auto; }

/* ═══════════════════════════════════════
   REVIEW PAGE
═══════════════════════════════════════ */
.review-hero-section {
  padding: 140px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg-base) 0%, transparent 100%);
}
.rating-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}
.rating-big-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--primary);
  line-height: 1;
}
.rating-meta-col { text-align: left; }
.rating-stars-row { margin-bottom: 6px; }
.rating-label-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.review-body-section { padding: 60px 0 80px; }
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.review-content { min-width: 0; }
.review-text-block {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 20px;
}
.verdict-box {
  background: linear-gradient(135deg, rgba(212,168,83,0.08) 0%, rgba(212,168,83,0.02) 100%);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 16px;
  padding: 28px;
  margin-top: 36px;
}
.verdict-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 0 12px;
}
.verdict-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}
.review-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #FFFFFF;
  margin: 0 0 16px;
}
.quick-facts-list { display: flex; flex-direction: column; }
.quick-fact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.quick-fact-row:last-child { border-bottom: none; }
.quick-fact-key {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #FFFFFF;
}
.quick-fact-val {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
}
.sidebar-shop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.sidebar-shop-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #FFFFFF;
  margin: 0 0 10px;
}
.sidebar-shop-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 18px;
}

/* ═══════════════════════════════════════
   TESTIMONIAL QUOTE MARK
═══════════════════════════════════════ */
.testimonial-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════ */
.legal-page-section { padding: 140px 0 80px; }
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-page-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--text-primary);
  margin: 0 0 12px;
  letter-spacing: 0.03em;
}
.legal-date {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-block { margin-bottom: 32px; }
.legal-block-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.legal-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 12px;
}
.legal-text:last-child { margin-bottom: 0; }
.legal-list { margin: 10px 0; padding-left: 20px; }
.legal-list-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-visual-side { display: none; }
  .hero-content-side { padding: 120px 48px 80px; text-align: center; align-items: center; }
  .hero-description { margin: 0 auto 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid-layout { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; padding: 16px 0; }
  .review-layout { grid-template-columns: 1fr; }
  .contact-grid-layout { grid-template-columns: 1fr; }
  .pros-cons-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container-main, .trust-grid, .footer-grid-layout, .footer-bottom-row { padding-left: 24px; padding-right: 24px; }
  .header-main { padding: 0 24px; }
  .header-nav { display: none; }
  .header-hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero-content-side { padding: 110px 24px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 28px; }
  .footer-grid-layout { grid-template-columns: 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cookie-bar { flex-direction: column; gap: 14px; padding: 18px 24px; }
  .cookie-message { text-align: center; }
  .cookie-actions { width: 100%; }
  .cookie-btn-action { flex: 1; text-align: center; }
  .hero-actions-group { flex-direction: column; width: 100%; }
  .btn-main { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-bottom-row { flex-direction: column; text-align: center; }
  .comp-table { font-size: 0.82rem; }
  .comp-table th, .comp-table td { padding: 10px 12px; }
  .review-sidebar { position: static; }
  .modal-content-box { padding: 28px 20px; }
  .contact-method-item { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .section-spacing { padding: 64px 0; }
  .container-main { padding: 0 16px; }
  .hero-section { padding-top: 60px; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 16px; padding: 22px; }
  .stats-number { font-size: 2.4rem; }
  .contact-form-box { padding: 24px 20px; }
  .order-card-box { padding: 24px 20px; }
  .legal-page-title { font-size: 2rem; }
  .order-page-section, .contact-page-section, .review-hero-section { padding-top: 100px; }
  .rating-big-number { font-size: 3.5rem; }
  .review-section-title { font-size: 1.4rem; }
}
