:root {
  --bg: #0b0d0e;
  --panel: #131718;
  --panel2: #1a1f20;
  --text: #f5f5f2;
  --muted: #a9b0ae;
  --line: #2a3031;
  --accent: #d9ff35;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--max);
  margin: auto;
  padding: 0 22px;
}
.top {
  background: var(--accent);
  color: #0a0c0d;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  padding: 9px;
}
nav {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  padding: 22px 0;
}
.navin {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 24px;
}
.logo span {
  color: var(--accent);
}
.navlinks {
  display: flex;
  gap: 26px;
  font-size: 13px;
  font-weight: 700;
}
.navlinks a:hover {
  color: var(--accent);
}
.hero {
  min-height: auto;
  padding-top: 110px;
  box-sizing: border-box;
  display: block;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(5,7,7,.93) 0%, rgba(5,7,7,.66) 43%, rgba(5,7,7,.14) 100%),
    url("../images/hero.png") 64% center/cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 24px;
}
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  font-size: clamp(46px, 7vw, 86px);
  line-height: .94;
  letter-spacing: -.055em;
  max-width: 850px;
  margin: 18px 0 24px;
}
.hero p {
  max-width: 610px;
  color: #d1d5d3;
  font-size: 18px;
}
.cta-price {
  font-size: 15px;
  color: #c2c7c5;
  margin-top: 20px;
}
.cta-price strong {
  color: var(--accent);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 5px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid var(--line);
  transition: .2s;
  cursor: pointer;
}
.btn.primary {
  background: var(--accent);
  color: #090b0b;
  border-color: var(--accent);
}
.btn.primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}
.btn.ghost:hover {
  border-color: #777;
}
.trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #c2c7c5;
  font-size: 12px;
  font-weight: 700;
}
.trust b {
  color: #fff;
}
#valassz {
  padding-top: 10px;
  padding-bottom: 70px;
}
section {
  padding: 92px 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}
.kicker {
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .16em;
}
h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 12px 0 16px;
}
.lead {
  color: var(--muted);
  font-size: 17px;
}
.problem {
  background: #0e1112;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px;
  border-radius: 7px;
}
.num {
  font-size: 12px;
  color: var(--accent);
  font-weight: 900;
}
.card h3 {
  font-size: 21px;
  margin: 20px 0 8px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
}
.visual {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-self: center;
}
.visual img {
  display: block;
  width: 100%;
  height: auto;
}
.visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.88));
  pointer-events: none;
}
.visual .caption {
  position: absolute;
  z-index: 1;
  inset: 0;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 34px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.05;
}
.copy {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 42px;
  border-radius: 8px;
}
.copy ul {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.copy li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.copy li:before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 12px;
}
.proof {
  background: #121617;
}
.proofbox {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  background: linear-gradient(135deg, #171c1d, #101313);
}
.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 25px;
}
.versus > div {
  padding: 25px;
  border-radius: 6px;
  background: #0d1010;
  border: 1px solid var(--line);
}
.versus .bad {
  border-color: #5b3b3b;
}
.versus .good {
  border-color: #64751b;
}
.versus strong {
  font-size: 21px;
}
.versus ul {
  padding-left: 20px;
  color: var(--muted);
}
.detail {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}
.detail-img {
  min-height: 470px;
  border-radius: 8px;
  overflow: hidden;
  background: url("../images/detail.png") center/cover;
}
.detail-copy {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 42px;
}
.price {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: stretch;
}
.pricecard {
  background: var(--accent);
  color: #0b0d0e;
  border-radius: 8px;
  padding: 38px;
}
.pricecard .pricebig {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
}
.pricecard p {
  max-width: 500px;
}
.pricecard .btn {
  background: #0b0d0e;
  color: #fff;
  border-color: #0b0d0e;
  margin-top: 10px;
}
.math {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}
.math .row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  color: var(--muted);
}
.math .row strong {
  color: #fff;
}
.math .row:last-child {
  border: 0;
}
.selector {
  background: linear-gradient(135deg, #181e1f, #0d1010);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 45px;
}
.fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.field {
  width: 100%;
  background: #0a0d0d;
  color: #fff;
  border: 1px solid #343a3b;
  border-radius: 5px;
  padding: 16px;
  font: inherit;
}
.field:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}
.field:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.selector-status {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  min-height: 22px;
}
.selector-result {
  display: none;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #64751b;
  background: rgba(217,255,53,.06);
  border-radius: 6px;
}
.selector-result.show {
  display: block;
}
.selector-result strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}
.selector-result span {
  color: var(--muted);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.review {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
}
.review-body {
  flex: 1;
}
.stars {
  color: var(--accent);
  letter-spacing: 3px;
}
.review p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.review-body {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 18px;
}
.review small {
  color: var(--muted);
  font-weight: 800;
}
.faq {
  max-width: 850px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 18px;
}
.faq p {
  color: var(--muted);
  max-width: 750px;
}
.final {
  padding: 110px 0 130px;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, #263022, transparent 42%);
}
.final h2 {
  max-width: 800px;
  margin: 10px auto 22px;
}
.final p {
  color: var(--muted);
}
footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: #858c8a;
  font-size: 12px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mobile-cta {
  display: none;
}
.youtube-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 28px auto 0;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.youtube-wrap iframe,
.youtube-wrap .youtube-frame-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-wrap .youtube-frame-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cookie media placeholder */
.cookie-media-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #181d20 0%, #0c0e10 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  z-index: 2;
}
.cookie-placeholder-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.placeholder-icon-wrap {
  color: #ff0033;
  background: rgba(255, 0, 51, 0.1);
  border: 1px solid rgba(255, 0, 51, 0.25);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.cookie-placeholder-content h4 {
  color: #fff;
  font-size: 19px;
  margin: 0;
}
.cookie-placeholder-content p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}
.placeholder-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  width: calc(100% - 48px);
  max-width: 1120px;
  background: rgba(18, 22, 24, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(217, 255, 53, 0.3);
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.75);
  padding: 20px 24px;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-content {
  flex: 1;
}
.cookie-banner-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}
.cookie-icon {
  font-size: 18px;
  line-height: 1;
}
.cookie-banner-text {
  color: #9ba3a0;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 5px;
}
.btn.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn.outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cookie-modal-backdrop.visible {
  opacity: 1;
}
.cookie-modal {
  background: #14181a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  width: 100%;
  max-width: 760px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85);
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.cookie-modal-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-heading h3 {
  margin: 0;
  font-size: 19px;
  color: #fff;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 4px;
}
.cookie-modal-close:hover {
  color: #fff;
}
.cookie-modal-body {
  padding: 22px 24px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-intro {
  font-size: 13.5px;
  color: #9ba3a0;
  line-height: 1.55;
  margin: 0 0 20px 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-category-title-wrap h4 {
  margin: 0;
  font-size: 15px;
  color: #fff;
}
.cookie-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  letter-spacing: 0.02em;
}
.cookie-badge.required {
  background: rgba(217, 255, 53, 0.15);
  color: var(--accent);
}
.cookie-category-desc {
  font-size: 13px;
  color: #9ba3a0;
  line-height: 1.5;
  margin: 0 0 10px 0;
}
.cookie-details-toggle {
  font-size: 12px;
  color: #858c8a;
  margin-top: 8px;
}
.cookie-details-toggle summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
  outline: none;
  user-select: none;
}
.cookie-details-toggle summary:hover {
  text-decoration: underline;
}
.cookie-details-table-wrap {
  overflow-x: auto;
  margin-top: 10px;
}
.cookie-details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
  text-align: left;
}
.cookie-details-table th {
  padding: 6px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
}
.cookie-details-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #bbb;
  vertical-align: top;
  line-height: 1.4;
}
.cookie-details-table code {
  color: var(--accent);
  background: rgba(217, 255, 53, 0.08);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 11px;
}

/* Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #2b3135;
  transition: 0.2s ease;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.2s ease;
  border-radius: 50%;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: var(--accent);
  border-color: var(--accent);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
  background-color: #0b0d0e;
}
.cookie-switch.disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

/* Floating reopen button */
.cookie-floating-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #171b1d;
  border: 1px solid rgba(217, 255, 53, 0.35);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cookie-floating-btn:hover {
  transform: scale(1.1);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(217, 255, 53, 0.35);
}
