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

:root {
  --bg: #ffffff;
  --bg2: #f5f7fb;
  --bg3: #eef1f8;
  --ink: #121a2b;
  --card: #ffffff;
  --card-b: #eef0f6;
  --blue: #2f5bea;
  --blue-dark: #1d3fc4;
  --blue-light: #6f8dff;
  --blue-tint: rgba(47, 91, 234, 0.08);
  --orange: #ff6a3d;
  --orange-dark: #e8551f;
  --orange-light: #ffb199;
  --orange-tint: rgba(255, 106, 61, 0.1);
  --green: #17a35f;
  --green-tint: rgba(23, 163, 95, 0.12);
  --text: #1b2438;
  --text-muted: #616c85;
  --text-dim: #97a0b8;
  --border: #e7eaf3;
  --border-h: rgba(47, 91, 234, 0.35);
  --shadow-sm: 0 4px 16px rgba(18, 26, 43, 0.06);
  --shadow: 0 18px 48px rgba(18, 26, 43, 0.12);
  --shadow-lg: 0 30px 70px rgba(18, 26, 43, 0.16);
  --r: 26px;
  --r-sm: 16px;
  --r-xs: 10px;
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Manrope', 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(--bg2); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 4px; }

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

/* Common Element Base Rules */
.common-element { box-sizing: border-box; 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: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-box { text-align: center; }
.preloader-icon {
  width: 68px; height: 68px; margin: 0 auto 22px;
  animation: mark-pulse 1.3s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(47, 91, 234, 0.35));
}
.preloader-icon img { width: 100%; height: 100%; display: block; }
@keyframes mark-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.1) rotate(6deg); opacity: 0.85; }
}
.preloader-text {
  font-family: var(--font-h); font-size: 0.95rem; font-weight: 700;
  color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase;
  animation: dot-pulse 1.3s ease-in-out infinite;
}
@keyframes dot-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  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: var(--ink);
  color: #fff;
  font-size: 0.72rem; text-align: center; padding: 7px 16px;
  line-height: 1.5; letter-spacing: 0.3px;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img {
  height: 46px; width: auto; max-width: 220px;
  object-fit: contain; display: block;
  transition: transform 0.3s ease;
}
.logo:hover .logo-img { transform: scale(1.04); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.3px;
  color: var(--text-muted); position: relative;
  padding: 10px 18px; border-radius: 50px; transition: var(--t);
}
.nav-link:hover { color: var(--ink); background: var(--bg2); }
.nav-link.active { color: var(--blue); background: var(--blue-tint); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); 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(255, 255, 255, 0.98); backdrop-filter: blur(20px);
  z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  opacity: 0; visibility: hidden; transition: var(--t);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu .nav-link { font-size: 1.15rem; letter-spacing: 0.5px; }

/* ── BUTTONS ── */
.btn-p {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff; font-family: var(--font-h); font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.3px; padding: 16px 34px;
  border-radius: 50px; transition: var(--t); position: relative; overflow: hidden;
  box-shadow: 0 12px 28px rgba(255, 106, 61, 0.28);
}
.btn-p:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255, 106, 61, 0.4); }
.btn-p svg { width: 16px; height: 16px; }
.btn-s {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); font-family: var(--font-h);
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.3px;
  padding: 15px 32px; border-radius: 50px;
  border: 2px solid var(--border); transition: var(--t);
}
.btn-s:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-3px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
  background: var(--bg2);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 78% 15%, rgba(255,106,61,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 15% 85%, rgba(47,91,234,0.1) 0%, transparent 55%);
}
.hero-diag {
  position: absolute; bottom: -2px; left: 0; right: 0; height: 100px;
  background: var(--bg);
  clip-path: polygon(0 55%, 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: #fff; border: 1px solid var(--border);
  border-radius: 50px; padding: 8px 18px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange-dark); margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; animation: pulse-g 2s infinite;
}
@keyframes pulse-g { 0%,100%{box-shadow:0 0 0 0 rgba(255,106,61,0.4)} 50%{box-shadow:0 0 0 8px rgba(255,106,61,0)} }
.hero-eyebrow {
  font-family: var(--font-h); font-size: 0.92rem; font-weight: 700;
  color: var(--blue); letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-h); font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 800; line-height: 1.08; color: var(--ink);
  margin-bottom: 20px; letter-spacing: -1px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.08rem; 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-lg);
  aspect-ratio: 4/3; background: #fff;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff;
  box-shadow: var(--shadow); 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: 42px; height: 42px; background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-float-icon svg { width: 20px; height: 20px; color: #fff; }
.hero-float-lbl { font-size: 0.68rem; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; }
.hero-float-val { font-family: var(--font-h); font-size: 1.1rem; font-weight: 800; color: var(--ink); }

/* ── SECTIONS ── */
.section { padding: 104px 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-h); font-size: 0.78rem; font-weight: 700;
  color: var(--orange-dark); letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.2; color: var(--ink); margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-desc { font-size: 1.02rem; color: var(--text-muted); line-height: 1.8; }
.divider {
  width: 56px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--orange));
  margin: 20px auto 0; border-radius: 3px;
}

/* ── TRUST BAR ── */
.trust { padding: 52px 0; background: var(--ink); }
.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: 54px; height: 54px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 24px; height: 24px; color: var(--orange-light); }
.trust-lbl { font-size: 0.9rem; font-weight: 700; color: #fff; }
.trust-sub { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ── PRODUCT SHOWCASE ── */
.showcase { background: var(--bg2); }
.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: #fff; 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-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(47,91,234,0.06), transparent 60%);
  pointer-events: none;
}
.gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumb {
  width: 82px; height: 82px; 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; background: #fff;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--blue); box-shadow: 0 0 0 4px var(--blue-tint); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-tint); border: 1px solid rgba(47,91,234,0.18);
  border-radius: 50px; padding: 6px 15px; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.prod-name {
  font-family: var(--font-h); font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 800; color: var(--ink); line-height: 1.2;
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.prod-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.prod-price { font-family: var(--font-h); font-size: 2.3rem; font-weight: 800; color: var(--orange-dark); }
.prod-price-note { font-size: 0.8rem; color: var(--text-muted); }
.prod-desc { font-size: 0.97rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 28px; }
.specs { margin-bottom: 28px; }
.spec-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem;
}
.spec-chk {
  width: 22px; height: 22px; background: var(--green-tint);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.spec-chk svg { width: 12px; height: 12px; color: var(--green); }
.spec-lbl { color: var(--text-muted); min-width: 130px; }
.spec-val { color: var(--ink); font-weight: 600; }
.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: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 34px 28px; transition: var(--t); position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  opacity: 0; transition: var(--t);
}
.feat-card:hover { border-color: var(--border-h); transform: translateY(-6px); box-shadow: var(--shadow); }
.feat-card:hover::before { opacity: 1; }
.feat-icon {
  width: 58px; height: 58px; background: var(--blue-tint);
  border: 1px solid rgba(47,91,234,0.14); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.feat-icon svg { width: 26px; height: 26px; color: var(--blue); }
.feat-title { font-family: var(--font-h); font-size: 1.12rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.feat-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.stats-row {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: var(--r);
  padding: 46px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px;
  box-shadow: var(--shadow);
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-h); font-size: 2.7rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 0.76rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--bg2); 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); box-shadow: var(--shadow-sm); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--orange); 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: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 0.9rem; color: #fff; font-weight: 800; flex-shrink: 0;
}
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--ink); }
.testi-date { font-size: 0.72rem; color: var(--text-dim); }

/* ── 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: #fff; overflow: hidden; transition: var(--t);
}
.faq-item:hover { border-color: var(--border-h); }
.faq-q {
  width: 100%; background: none; color: var(--ink); font-family: var(--font-b);
  font-size: 0.96rem; font-weight: 600; padding: 21px 26px;
  text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 14px; transition: var(--t);
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 30px; height: 30px; 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(--blue); }
.faq-item.active .faq-icon { background: var(--blue); border-color: var(--blue); 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: 300px; }
.faq-ans-inner { padding: 0 26px 21px; font-size: 0.91rem; color: var(--text-muted); line-height: 1.8; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--ink) 0%, #1d2540 55%, var(--blue-dark) 100%);
  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: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255,106,61,0.16), transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800; color: #fff; margin-bottom: 14px; position: relative;
}
.cta-title em { font-style: normal; color: var(--orange-light); }
.cta-sub { font-size: 1.02rem; color: rgba(255,255,255,0.68); margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
.footer { background: var(--ink); 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 rgba(255,255,255,0.1); }
.footer-brand-text { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 280px; margin-top: 16px; }
.footer-col-t { font-size: 0.75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-light); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.88rem; font-weight: 500; color: #ffffff; transition: var(--t); }
.footer-link:hover { color: var(--orange-light); padding-left: 4px; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; box-shadow: 0 -10px 40px rgba(18,26,43,0.12);
  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-text a { color: var(--blue); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 11px 26px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; transition: var(--t); }
.cookie-accept { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; }
.cookie-accept:hover { box-shadow: 0 10px 26px rgba(47,91,234,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(--ink); }

/* ── REVIEW PAGE ── */
.review-hero { padding: 136px 0 70px; background: var(--bg2); 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: 900; color: var(--orange-dark); }
.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: 700; color: var(--ink); 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(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 26px; }
.pros-box { border-color: rgba(23,163,95,0.22); }
.cons-box { border-color: rgba(255,106,61,0.22); }
.pros-t, .cons-t { font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.pros-t { color: var(--green); }
.cons-t { color: var(--orange-dark); }
.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(--green); font-weight: 700; flex-shrink: 0; }
.cons-i::before { content: '–'; color: var(--orange-dark); font-weight: 700; flex-shrink: 0; }
.verdict-card { background: var(--blue-tint); border: 1px solid rgba(47,91,234,0.2); border-radius: var(--r); padding: 30px; margin-top: 28px; }
.verdict-t { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--blue); margin-bottom: 12px; }
.verdict-txt { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; }
.sidebar-card { background: var(--bg2); 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: 700; color: var(--ink); margin-bottom: 16px; }
.review-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.review-shot { aspect-ratio: 4/3; border-radius: var(--r-sm); border: 1px solid var(--border); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.review-shot img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 600px) { .review-shots { grid-template-columns: 1fr 1fr; } }
.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(--ink); font-weight: 600; }

/* ── ORDER PAGE ── */
.order-page { padding: 136px 0 72px; background: var(--bg2); }
.order-grid { display: flex; justify-content: center; width: 100%; max-width: 560px; margin: 0 auto 52px; }
.order-card { background: #fff; 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(--bg2); border-radius: var(--r-sm); border: 1px solid var(--border); margin-bottom: 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.order-img img { width: 100%; height: 100%; object-fit: cover; }
.order-gallery { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.order-gallery img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--r-xs); border: 1px solid var(--border); background: #fff; }
.order-name { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; color: var(--ink); 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: 800; color: var(--orange-dark); }
.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(--green); flex-shrink: 0; }
.comp-section { margin-top: 44px; background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 30px; }
.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: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.72rem; }
.comp-table td { color: var(--text-muted); }
.comp-table td:first-child { color: var(--ink); font-weight: 600; }
.comp-chk { color: var(--green); font-weight: 700; }

/* ── CONTACT PAGE ── */
.contact-page { padding: 136px 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(--bg2); 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: 48px; height: 48px; background: var(--blue-tint); border: 1px solid rgba(47,91,234,0.14); border-radius: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-method-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-method-l { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-method-v { font-size: 0.92rem; color: var(--ink); font-weight: 600; }
.contact-method-v a:hover { color: var(--blue); }
.contact-form { background: var(--bg2); 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: 700; color: var(--ink); margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; margin-bottom: 7px; }
.form-input { width: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--ink); font-family: var(--font-b); font-size: 0.93rem; padding: 13px 16px; transition: var(--t); outline: none; }
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-tint); }
.form-input::placeholder { color: var(--text-dim); }
.form-select { width: 100%; background: #fff; border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--ink); 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='%232f5bea' 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(--blue); box-shadow: 0 0 0 3px var(--blue-tint); }
.form-select option { background: #fff; color: var(--ink); }
textarea.form-input { 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: var(--green-tint); border: 1px solid rgba(23,163,95,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(--green); }
.success-t { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; color: var(--ink); 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(18,26,43,0.6); backdrop-filter: blur(8px); }
.thank-you-content { position: relative; z-index: 2; background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 42px 32px 32px; max-width: 460px; width: 90%; text-align: center; box-shadow: var(--shadow-lg); 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(--orange-dark); transform: scale(1.15); }
.thank-you-icon { width: 68px; height: 68px; background: var(--green-tint); border: 2px solid rgba(23,163,95,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(--green); }
.thank-you-title { font-family: var(--font-h); font-size: 1.65rem; font-weight: 800; color: var(--ink); 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: 136px 0 72px; background: var(--bg2); }
.legal-inner { max-width: 780px; margin: 0 auto; padding: 0 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-sm); }
.legal-title { font-family: var(--font-h); font-size: clamp(1.7rem, 5vw, 2.2rem); font-weight: 800; color: var(--ink); padding-top: 40px; margin-bottom: 8px; word-break: break-word; }
.legal-date { font-size: 0.82rem; font-weight: 700; color: var(--blue); margin-bottom: 36px; }
.legal-section { margin-bottom: 32px; }
.legal-section:last-child { margin-bottom: 0; padding-bottom: 40px; }
.legal-section h3 { font-family: var(--font-h); font-size: clamp(1rem, 3.5vw, 1.1rem); font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.legal-section p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 10px; word-wrap: break-word; }
.legal-section ul { padding-left: 18px; margin-bottom: 10px; }
.legal-section li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 5px; list-style: disc; }

@media (max-width: 600px) {
  .legal-page { padding: 120px 0 48px; }
  .legal-inner { padding: 0 18px; border-radius: var(--r-sm); }
  .legal-title { padding-top: 28px; }
}

/* ── 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(--orange-dark) 25%, var(--orange) 50%, var(--orange-dark) 75%); background-size: 200% 100%; animation: shimmer 2.5s linear infinite; box-shadow: 0 12px 28px rgba(255,106,61,0.28); }

/* ── 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 { 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 { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .logo-img { height: 36px; }
  .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 { 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: 16px; padding: 22px; }
  .stat-num { font-size: 2rem; }
  .footer-inner { padding: 0 16px; }
}
