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

:root {
  --bg: #faf8f5;
  --bg-alt: #f2efe9;
  --bg-dark: #1a1f1c;
  --card: #ffffff;
  --card-hover: #f7f5f1;
  --primary: #0d5c4d;
  --primary-dark: #094a3e;
  --primary-light: #1a7d6a;
  --accent: #c4784a;
  --accent-light: #d4916a;
  --text: #2d342e;
  --text-muted: #6b7268;
  --text-light: #9ca39d;
  --border: rgba(13, 92, 77, 0.1);
  --border-h: rgba(13, 92, 77, 0.3);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --font-h: 'Outfit', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --t: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

::selection { background: var(--primary); color: #fff; }

.common-element { box-sizing: border-box; }
a, a.common-element, .common-element[href] { text-decoration: none; color: inherit; transition: var(--t); }
img.common-element { max-width: 100%; display: block; }
button.common-element { cursor: pointer; border: none; outline: none; font-family: var(--font-b); }
ul.common-element, ol.common-element { list-style: none; }
input.common-element, textarea.common-element, select.common-element { 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: linear-gradient(135deg, var(--bg-dark) 0%, #243029 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-box { text-align: center; }
.preloader-icon {
  width: 64px; height: 64px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  animation: pulse-ring 1.5s ease-in-out infinite;
}
.preloader-icon svg { width: 48px; height: 48px; }
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}
.preloader-text {
  font-family: var(--font-h); font-size: 1.2rem; font-weight: 500;
  color: #fff; letter-spacing: 4px; text-transform: uppercase;
  animation: fade-blink 1.2s ease-in-out infinite;
}
@keyframes fade-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.header.scrolled {
  background: rgba(250, 248, 245, 0.98);
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 12px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.affiliate-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem; text-align: center; padding: 6px 16px;
  line-height: 1.5; letter-spacing: 0.3px;
}
.logo {
  display: inline-flex; align-items: center; text-decoration: none;
}
.logo-img {
  height: 44px; width: auto;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img {
  transform: scale(1.03);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted); position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: var(--t); border-radius: 2px;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--primary); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--t);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(250, 248, 245, 0.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  opacity: 0; visibility: hidden; transition: var(--t);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu .nav-link { font-size: 1rem; letter-spacing: 2px; }

/* ── BUTTONS ── */
.btn-p {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary);
  color: #fff; font-family: var(--font-h); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.8px; padding: 14px 28px;
  border-radius: var(--r-sm); transition: var(--t); position: relative; overflow: hidden;
  border: none; outline: none; cursor: pointer; box-sizing: border-box;
}
.btn-p:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,92,77,0.3); }
.btn-p svg { width: 16px; height: 16px; }
.btn-s {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary); font-family: var(--font-h);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.8px;
  padding: 13px 26px; border-radius: var(--r-sm);
  border: 2px solid var(--border-h); transition: var(--t);
}
.btn-s:hover { border-color: var(--primary); background: rgba(13,92,77,0.05); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-bg-shape {
  position: absolute; top: -20%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(13,92,77,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,92,77,0.08); border: 1px solid rgba(13,92,77,0.15);
  border-radius: 50px; padding: 6px 14px; font-size: 0.68rem;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: var(--primary);
  border-radius: 50%; animation: pulse-g 2s infinite;
}
@keyframes pulse-g { 0%,100%{box-shadow:0 0 0 0 rgba(13,92,77,0.4)} 50%{box-shadow:0 0 0 8px rgba(13,92,77,0)} }
.hero-eyebrow {
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 500;
  color: var(--accent); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-h); font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.15; color: var(--text);
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
}
.hero-desc {
  font-size: 1rem; color: var(--text-muted); max-width: 460px;
  margin-bottom: 32px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; text-align: center; }
.hero-img-wrap {
  width: 100%; max-width: 500px; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  margin: 0 auto;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: var(--card);
  box-shadow: var(--shadow); border-radius: var(--r-sm); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border);
}
.hero-float.f1 { bottom: 30px; left: -20px; animation: float-g 4s ease-in-out infinite; }
.hero-float.f2 { top: 40px; 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: 36px; height: 36px; background: rgba(13,92,77,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-icon svg { width: 18px; height: 18px; color: var(--primary); }
.hero-float-lbl { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.hero-float-val { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--text); }

/* ── SECTIONS ── */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-eyebrow {
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 600;
  color: var(--accent); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 14px;
}
.section-desc { font-size: 0.98rem; color: var(--text-muted); line-height: 1.8; }
.divider {
  width: 40px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 18px auto 0; border-radius: 3px;
}

/* ── TRUST BAR ── */
.trust { padding: 48px 0; background: var(--bg-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.trust-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; color: var(--accent-light); }
.trust-lbl { font-size: 0.82rem; font-weight: 600; color: #fff; }
.trust-sub { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

/* ── PRODUCT SHOWCASE ── */
.showcase { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.gallery-main {
  width: 100%; aspect-ratio: 1; border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
  background: var(--card); display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; box-shadow: var(--shadow);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: var(--t); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px; height: 72px; 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(--primary); box-shadow: 0 0 0 3px rgba(13,92,77,0.1); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(13,92,77,0.08); border: 1px solid rgba(13,92,77,0.15);
  border-radius: 50px; padding: 4px 12px; font-size: 0.65rem;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.prod-name {
  font-family: var(--font-h); font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 700; color: var(--text); line-height: 1.2;
  margin-bottom: 12px;
}
.prod-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.prod-price { font-family: var(--font-h); font-size: 2rem; font-weight: 700; color: var(--primary); }
.prod-price-note { font-size: 0.75rem; color: var(--text-muted); }
.prod-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.specs { margin-bottom: 24px; }
.spec-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem;
}
.spec-chk {
  width: 18px; height: 18px; background: rgba(13,92,77,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.spec-chk svg { width: 10px; height: 10px; color: var(--primary); }
.spec-lbl { color: var(--text-muted); min-width: 110px; }
.spec-val { color: var(--text); font-weight: 500; }
.prod-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── FEATURES ── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 22px; transition: var(--t); position: relative; overflow: hidden;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-h); }
.feat-icon {
  width: 52px; height: 52px; background: rgba(13,92,77,0.08);
  border: 1px solid rgba(13,92,77,0.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feat-icon svg { width: 24px; height: 24px; color: var(--primary); }
.feat-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.feat-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.stats-row {
  background: var(--bg-dark); border-radius: var(--r-lg); padding: 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-h); font-size: 2.4rem; font-weight: 800; color: var(--accent-light); line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--bg-alt); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px; transition: var(--t);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.star { color: var(--accent); font-size: 0.95rem; }
.testi-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.testi-auth { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 0.85rem; color: #fff; font-weight: 600; flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.testi-date { font-size: 0.7rem; color: var(--text-light); }

/* ── FAQ ── */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 720px; 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.92rem; font-weight: 500; padding: 18px 22px;
  text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 12px; transition: var(--t);
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 26px; height: 26px; 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: 12px; height: 12px; color: var(--primary); }
.faq-item.active .faq-icon { background: var(--primary); border-color: var(--primary); transform: rotate(180deg); }
.faq-item.active .faq-icon svg { color: #fff; }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-ans { max-height: 280px; }
.faq-ans-inner { padding: 0 22px 18px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center; overflow: hidden; position: relative; padding: 90px 0;
}
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700; color: #fff; margin-bottom: 12px; position: relative;
}
.cta-title em { font-style: normal; color: var(--accent-light); }
.cta-sub { font-size: 0.98rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-section .btn-p { background: #fff; color: var(--primary); }
.cta-section .btn-p:hover { background: var(--bg); transform: translateY(-2px); }
.cta-section .btn-s { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-section .btn-s:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
.footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand-text { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 260px; margin-top: 14px; }
.footer-col-t { font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--t); }
.footer-link:hover { color: var(--accent-light); padding-left: 4px; }
.footer-bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--card); box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  border-top: 1px solid var(--border); padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  z-index: 10000; transform: translateY(100%); transition: transform 0.5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 0.85rem; color: var(--text-muted); flex: 1; line-height: 1.6; }
.cookie-text a { color: var(--primary); text-decoration: none; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { padding: 10px 20px; border-radius: var(--r-sm); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; transition: var(--t); }
.cookie-accept { background: var(--primary); color: #fff; }
.cookie-accept:hover { background: var(--primary-dark); transform: translateY(-1px); }
.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: 130px 0 60px; background: var(--bg-alt); border-bottom: 1px solid var(--border); text-align: center; }
.rating-big { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 18px; }
.rating-num { font-family: var(--font-h); font-size: 4rem; font-weight: 800; color: var(--primary); }
.rating-meta { text-align: left; }
.rating-stars { display: flex; gap: 2px; }
.rating-lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.review-body { padding: 64px 0; }
.review-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.rev-section-t { font-family: var(--font-h); font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.pros-box, .cons-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; }
.pros-box { border-left: 3px solid var(--primary); }
.cons-box { border-left: 3px solid var(--accent); }
.pros-t, .cons-t { font-family: var(--font-h); font-size: 0.95rem; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.pros-t { color: var(--primary); }
.cons-t { color: var(--accent); }
.pros-list, .cons-list { display: flex; flex-direction: column; gap: 8px; }
.pros-i, .cons-i { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.pros-i::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.cons-i::before { content: '–'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.verdict-card { background: rgba(13,92,77,0.05); border: 1px solid rgba(13,92,77,0.15); border-radius: var(--r); padding: 26px; margin-top: 24px; }
.verdict-t { font-family: var(--font-h); font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.verdict-txt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.sidebar-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; margin-bottom: 16px; box-shadow: var(--shadow); }
.sidebar-card-t { font-family: var(--font-h); font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.quick-facts { display: flex; flex-direction: column; gap: 8px; }
.quick-fact { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.quick-fact:last-child { border-bottom: none; }
.quick-fact-l { font-size: 0.8rem; color: var(--text-muted); }
.quick-fact-v { font-size: 0.8rem; color: var(--text); font-weight: 500; }
.sidebar-cta { background: var(--primary); border-radius: var(--r); padding: 22px; text-align: center; }
.sidebar-cta-t { font-family: var(--font-h); font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.sidebar-cta-sub { font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.sidebar-cta .btn-p { width: 100%; justify-content: center; background: #fff; color: var(--primary); }
.sidebar-cta .btn-p:hover { background: var(--bg); }

/* ── ORDER PAGE ── */
.order-page { padding: 130px 0 64px; }
.order-grid { display: flex; justify-content: center; width: 100%; max-width: 520px; margin: 0 auto 48px; }
.order-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; width: 100%; box-shadow: var(--shadow-lg); }
.order-img { width: 100%; aspect-ratio: 1; background: var(--bg-alt); border-radius: var(--r); border: 1px solid var(--border); margin-bottom: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.order-img img { width: 100%; height: 100%; object-fit: cover; }
.order-name { font-family: var(--font-h); font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: 4px; text-align: center; }
.order-sub { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-bottom: 16px; }
.order-price-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.order-price-l { font-size: 0.85rem; color: var(--text-muted); }
.order-price-v { font-family: var(--font-h); font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.order-perks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; max-width: 280px; margin-left: auto; margin-right: auto; }
.order-perk { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.order-perk svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }
.comp-section { margin-top: 40px; }
.comp-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.comp-table th, .comp-table td { padding: 10px 14px; text-align: left; font-size: 0.82rem; border-bottom: 1px solid var(--border); }
.comp-table th { color: var(--text-muted); font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; font-size: 0.68rem; }
.comp-table td { color: var(--text-muted); }
.comp-table td:first-child { color: var(--text); font-weight: 500; }
.comp-chk { color: var(--primary); font-weight: 700; }

/* ── CONTACT PAGE ── */
.contact-page { padding: 130px 0 64px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-intro { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-sm); transition: var(--t); }
.contact-method:hover { border-color: var(--border-h); box-shadow: var(--shadow); }
.contact-method-icon { width: 42px; height: 42px; background: rgba(13,92,77,0.08); border: 1px solid rgba(13,92,77,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-icon svg { width: 18px; height: 18px; color: var(--primary); }
.contact-method-l { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-method-v { font-size: 0.88rem; color: var(--text); font-weight: 500; }
.contact-method-v a:hover { color: var(--primary); }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 32px; box-shadow: var(--shadow); }
.contact-form-t { font-family: var(--font-h); font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.75rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 6px; }
.form-input { width: 100%; box-sizing: border-box; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--text); font-family: var(--font-b); font-size: 0.9rem; padding: 12px 14px; transition: var(--t); outline: none; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,92,77,0.08); }
.form-input::placeholder { color: var(--text-light); }
.form-select { width: 100%; box-sizing: border-box; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--text); font-family: var(--font-b); font-size: 0.9rem; padding: 12px 14px; 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='12' height='12' fill='%230d5c4d' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,92,77,0.08); }
.form-select option { background: var(--card); color: var(--text); }
textarea.form-input { min-height: 100px; resize: vertical; }
.submit-success { display: none; text-align: center; padding: 32px; }
.submit-success.show { display: block; }
.success-icon { width: 56px; height: 56px; background: rgba(13,92,77,0.1); border: 1px solid rgba(13,92,77,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.success-icon svg { width: 24px; height: 24px; color: var(--primary); }
.success-t { font-family: var(--font-h); font-size: 1.3rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.success-txt { font-size: 0.85rem; 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(26,31,28,0.75); backdrop-filter: blur(6px); }
.thank-you-content { position: relative; z-index: 2; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 38px 28px 28px; max-width: 420px; width: 90%; text-align: center; box-shadow: var(--shadow-lg); transform: scale(0.9) translateY(16px); 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: 12px; right: 16px; background: transparent; border: none; font-size: 24px; line-height: 1; color: var(--text-muted); cursor: pointer; transition: var(--t); }
.thank-you-close:hover { color: var(--primary); transform: scale(1.1); }
.thank-you-icon { width: 60px; height: 60px; background: rgba(13,92,77,0.1); border: 1px solid rgba(13,92,77,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.thank-you-icon svg { width: 28px; height: 28px; color: var(--primary); }
.thank-you-title { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.thank-you-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 22px; }

/* ── LEGAL PAGES ── */
.legal-page { padding: 130px 0 64px; }
.legal-inner { max-width: 720px; margin: 0 auto; }
.legal-title { font-family: var(--font-h); font-size: 2rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.legal-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 32px; }
.legal-section { margin-bottom: 28px; }
.legal-section h3 { font-family: var(--font-h); font-size: 1.05rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.legal-section p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 8px; }
.legal-section ul { padding-left: 16px; margin-bottom: 8px; }
.legal-section li { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 4px; list-style: disc; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s 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; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-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: 36px; }
  .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 { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .logo-img { height: 38px; }
  .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: 24px; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner { flex-direction: column; gap: 12px; padding: 16px 24px; }
  .cookie-text { text-align: center; }
  .cookie-btns { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .section-inner { padding: 0 16px; }
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-p, .btn-s { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }
  .stat-num { font-size: 1.8rem; }
  .footer-inner { padding: 0 16px; }
}
