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

:root {
  --bg: #0f0a07;
  --bg2: #1a1209;
  --bg3: #241a0f;
  --card: #2a1e12;
  --card-hover: #3a2a18;
  --gold: #c9a96e;
  --gold-dark: #a68548;
  --gold-light: #dfc08a;
  --amber: #b8862a;
  --brown: #6b4423;
  --brown-light: #8b5e34;
  --text: #f5f0e8;
  --text-muted: #a89a8a;
  --text-dim: #6b5f52;
  --border: rgba(201, 169, 110, 0.12);
  --border-h: rgba(201, 169, 110, 0.35);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  --r: 20px;
  --r-sm: 12px;
  --font-h: 'Playfair Display', serif;
  --font-b: 'DM Sans', sans-serif;
  --t: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.html-root,
.body-root,
.common-element,
.common-element::before,
.common-element::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.html-root {
  scroll-behavior: smooth;
}

.body-root {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

.common-element {
  box-sizing: border-box;
}

.common-link,
.common-element[href] {
  text-decoration: none;
  color: inherit;
  transition: var(--t);
}

.common-img {
  max-width: 100%;
  display: block;
}

.common-btn {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-b);
}

.common-ul,
.common-ol {
  list-style: none;
}

.common-input,
.common-textarea,
.common-select {
  font-family: var(--font-b);
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-box {
  text-align: center;
}

.preloader-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: pulse-glow 1.5s ease-in-out infinite;
}

.preloader-icon-inner {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.85;
  }
}

.preloader-text {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 10, 7, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.affiliate-bar {
  background: rgba(201, 169, 110, 0.08);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  color: var(--gold-light);
  font-size: 0.72rem;
  text-align: center;
  padding: 5px 16px;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 100px;
  width: 100px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 2px 10px rgba(201, 169, 110, 0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-link.active {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 7, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .nav-link {
  font-size: 1.1rem;
  letter-spacing: 3px;
}

/* ── BUTTONS ── */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg);
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 32px;
  border-radius: 50px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(201, 169, 110, 0.4);
}

.btn-p-svg {
  width: 16px;
  height: 16px;
}

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid var(--border-h);
  transition: var(--t);
}

.btn-s:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 70% 70%, rgba(107, 68, 35, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.hero-diag {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--bg2);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-g 2s infinite;
}

@keyframes pulse-g {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 169, 110, 0)
  }
}

.hero-eyebrow {
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title-highlight {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  width: 100%;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 60px rgba(201, 169, 110, 0.08);
  aspect-ratio: 4/3;
}

.hero-img-elem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  background: rgba(26, 18, 9, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float.f1 {
  bottom: -20px;
  left: -30px;
  animation: float-g 4s ease-in-out infinite;
}

.hero-float.f2 {
  top: 30px;
  right: -20px;
  animation: float-g 4s ease-in-out infinite 1.2s;
}

@keyframes float-g {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.hero-float-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 169, 110, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.hero-float-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-float-val {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

/* ── SECTIONS ── */
.section {
  padding: 100px 0;
  position: relative;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
  margin: 20px auto 0;
  border-radius: 3px;
}

/* ── TRUST BAR ── */
.trust {
  padding: 56px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon-svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.trust-lbl {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.trust-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── PRODUCT SHOWCASE ── */
.showcase {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t);
}

.gallery-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201, 169, 110, 0.08), transparent 60%);
  pointer-events: none;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--r-sm);
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.2);
}

.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.prod-name {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}

.prod-price {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.prod-price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.prod-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.specs {
  margin-bottom: 28px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.spec-chk {
  width: 20px;
  height: 20px;
  background: rgba(107, 68, 35, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.spec-chk-svg {
  width: 11px;
  height: 11px;
  color: var(--gold);
}

.spec-lbl {
  color: var(--text-muted);
  min-width: 120px;
}

.spec-val {
  color: var(--text);
  font-weight: 500;
}

.prod-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── FEATURES ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 26px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--brown-light));
  opacity: 0;
  transition: var(--t);
}

.feat-card:hover {
  border-color: var(--border-h);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.feat-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feat-icon-svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.feat-title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.feat-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.stats-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}

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

.stat-num {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--bg2);
}

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

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: var(--t);
}

.testi-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.star {
  color: var(--gold);
  font-size: 1rem;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.testi-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 0.9rem;
  color: var(--bg);
  font-weight: 700;
  flex-shrink: 0;
}

.testi-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.testi-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── FAQ ── */
.faq-section {
  background: var(--bg2);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  background: var(--card);
  overflow: hidden;
  transition: var(--t);
}

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

.faq-q {
  width: 100%;
  background: none;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 20px 26px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: var(--t);
}

.faq-q:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}

.faq-icon-svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(180deg);
}

.faq-item.active .faq-icon-svg {
  color: var(--bg);
}

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

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

.faq-ans-inner {
  padding: 0 26px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--card) 0%, var(--bg3) 50%, var(--card) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.07), transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  position: relative;
}

.cta-title-highlight {
  font-style: normal;
  color: var(--gold);
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
.footer {
  background: #0a0705;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}

.footer-brand-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-top: 16px;
}

.footer-col-t {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

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

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--t);
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 14, 10, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
}

.cookie-link {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--t);
}

.cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--bg);
}

.cookie-accept:hover {
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.cookie-reject:hover {
  border-color: var(--border-h);
  color: var(--text);
}

/* ── REVIEW PAGE ── */
.review-hero {
  padding: 180px 0 70px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.rating-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rating-num {
  font-family: var(--font-h);
  font-size: 4.2rem;
  font-weight: 800;
  color: var(--gold);
}

.rating-meta {
  text-align: left;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-body {
  padding: 72px 0;
}

.review-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  align-items: start;
}

.rev-section-t {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.pros-box,
.cons-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
}

.pros-box {
  border-color: rgba(107, 68, 35, 0.25);
}

.cons-box {
  border-color: rgba(201, 169, 110, 0.2);
}

.pros-t,
.cons-t {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros-t {
  color: var(--gold);
}

.cons-t {
  color: var(--amber);
}

.pros-list,
.cons-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pros-i,
.cons-i {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.pros-i::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.cons-i::before {
  content: '–';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

.verdict-card {
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--r);
  padding: 30px;
  margin-top: 28px;
}

.verdict-t {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.verdict-txt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 26px;
  margin-bottom: 18px;
}

.sidebar-card-t {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.quick-facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.quick-fact:last-child {
  border-bottom: none;
}

.quick-fact-l {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.quick-fact-v {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
}

/* ── ORDER PAGE ── */
.order-page {
  padding: 180px 0 72px;
}

.order-grid {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 52px;
}

.order-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
  width: 100%;
  box-shadow: var(--shadow);
}

.order-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg3);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  margin-bottom: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-img-elem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-name {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-align: center;
}

.order-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  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-l {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.order-price-v {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
}

.order-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.order-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.order-perk-svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
}

.comp-section {
  margin-top: 44px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.comp-table-th,
.comp-table-td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.comp-table-th {
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.comp-table-td {
  color: var(--text-muted);
}

.comp-table-td:first-child {
  color: var(--text);
  font-weight: 500;
}

.comp-chk {
  color: var(--gold);
  font-weight: 700;
}

/* ── CONTACT PAGE ── */
.contact-page {
  padding: 180px 0 72px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.contact-intro {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: var(--t);
}

.contact-method:hover {
  border-color: var(--border-h);
}

.contact-method-icon {
  width: 46px;
  height: 46px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.contact-method-l {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.contact-method-v {
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}

.contact-method-link:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px;
}

.contact-form-t {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 26px;
}

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

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}

.form-input {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.93rem;
  padding: 13px 16px;
  transition: var(--t);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

.form-select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.93rem;
  padding: 13px 16px;
  transition: var(--t);
  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='%23c9a96e' 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:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-select-option {
  background: var(--card);
  color: var(--text);
}

.form-input-textarea {
  min-height: 110px;
  resize: vertical;
}

.submit-success {
  display: none;
  text-align: center;
  padding: 36px;
}

.submit-success.show {
  display: block;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(107, 68, 35, 0.15);
  border: 1px solid rgba(107, 68, 35, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.success-icon-svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.success-t {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.success-txt {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── THANK YOU MODAL ── */
.thank-you-modal {
  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;
}

.thank-you-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.thank-you-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 7, 0.82);
  backdrop-filter: blur(8px);
}

.thank-you-content {
  position: relative;
  z-index: 2;
  background: var(--card);
  border: 1px solid var(--border-h);
  border-radius: var(--r);
  padding: 42px 32px 32px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 169, 110, 0.1);
  transform: scale(0.85) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-you-modal.show .thank-you-content {
  transform: scale(1) translateY(0);
}

.thank-you-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--t);
}

.thank-you-close:hover {
  color: var(--gold);
  transform: scale(1.15);
}

.thank-you-icon {
  width: 68px;
  height: 68px;
  background: rgba(107, 68, 35, 0.15);
  border: 2px solid rgba(107, 68, 35, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.thank-you-icon-svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.thank-you-title {
  font-family: var(--font-h);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.thank-you-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 26px;
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding: 180px 0 72px;
}

.legal-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-title {
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.legal-date {
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legal-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.legal-section:hover {
  border-color: var(--border-h);
  transform: translateY(-2px);
}

.legal-h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
}

.legal-p {
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-p:last-child {
  margin-bottom: 0;
}

.legal-ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-li {
  font-family: var(--font-b);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 8px;
  list-style: disc;
}

.legal-li::marker {
  color: var(--gold);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ── SHIMMER ── */
@keyframes shimmer {
  0% {
    background-position: -200% 0
  }

  100% {
    background-position: 200% 0
  }
}

.shimmer-btn {
  background: linear-gradient(90deg, var(--gold-dark) 25%, var(--gold) 50%, var(--gold-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

  .hero-actions,
  .cta-actions,
  .prod-actions {
    justify-content: center;
  }

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

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

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

  .prod-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

@media (max-width: 768px) {

  .section-inner,
  .hero-inner,
  .footer-inner,
  .legal-inner {
    padding: 0 24px;
  }

  .header-inner {
    padding: 0 24px;
  }

  .logo-img,
  .logo-icon-img {
    height: 100px;
    width: 100px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

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

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

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px;
  }

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

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

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

  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 24px;
  }

  .cookie-text {
    text-align: center;
  }

  .cookie-btns {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .hero-actions,
  .cta-actions,
  .prod-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 64px 0;
  }

  .section-inner,
  .legal-inner {
    padding: 0 16px;
  }

  .hero {
    padding: 150px 0 60px;
  }

  .hero-actions,
  .cta-actions,
  .prod-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-p,
  .btn-s {
    width: 100%;
    justify-content: center;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 22px;
  }

  .stat-num {
    font-size: 2rem;
  }

  .footer-inner {
    padding: 0 16px;
  }
}