:root {
  --bg: #0a0a0a;
  --panel: #141414;
  --panel-strong: #191b17;
  --text: #f5f3ee;
  --muted: #b8b5aa;
  --accent: #e8ff47;
  --accent-soft: rgba(232, 255, 71, 0.16);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --hero-fade: 1;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 78% 8%, rgba(232, 255, 71, 0.08), transparent 28rem),
    radial-gradient(circle at 6% 58%, rgba(41, 112, 69, 0.18), transparent 34rem),
    var(--bg);
}

.page-backdrop {
  position: fixed;
  inset: -18vmax;
  z-index: 0;
  pointer-events: none;
  opacity: var(--hero-fade);
  background:
    linear-gradient(125deg, rgba(10, 10, 10, 0.38), rgba(10, 10, 10, 0.82)),
    radial-gradient(circle at 72% 28%, rgba(232, 255, 71, 0.42), transparent 19rem),
    radial-gradient(circle at 18% 72%, rgba(22, 93, 51, 0.72), transparent 30rem),
    conic-gradient(from 130deg at 52% 48%, #0a0a0a, #142416, #e8ff47, #0b2f20, #0a0a0a);
  filter: saturate(1.05);
  transform: translate3d(calc(var(--hero-drift-x, 0) * 1px), calc(var(--hero-drift-y, 0) * 1px), 0);
  transition: opacity 0.08s linear;
  animation: backdropDrift 18s ease-in-out infinite alternate;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1120px) / 2));
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0;
  line-height: 1;
}

.brand span {
  color: var(--accent);
}

.main-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a,
.footer-nav a,
.footer-contact a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent);
}

.site-header .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #0a0a0a;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(232, 255, 71, 0.18);
}

.button-primary:hover {
  background: #d5ed32;
}

.button-outline {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.button-outline:hover {
  border-color: rgba(232, 255, 71, 0.7);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0 90px;
  background: transparent;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 28%, rgba(232, 255, 71, 0.24), transparent 18rem),
    conic-gradient(from 130deg, #0a0a0a, #142416, #e8ff47, #0b2f20, #0a0a0a);
  opacity: calc(var(--hero-fade) * 0.2);
  filter: blur(58px);
  animation: drift 16s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  z-index: -1;
  background: linear-gradient(transparent, rgba(10, 10, 10, 0.92) 76%, var(--bg));
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid,
.offer-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 690px;
  margin-bottom: 30px;
  font-size: clamp(4.5rem, 10vw, 8.8rem);
}

h1 span,
h1 em {
  display: block;
  font-style: normal;
}

h1 em {
  color: var(--accent);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

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

.hero-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 48px;
}

.check-card,
.card,
.price-card,
.price-compare,
.reference-block,
.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.check-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.28;
}

.check-card span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 1.45rem;
}

.section {
  position: relative;
  padding: 54px 0;
  background: transparent;
}

.hero + .section {
  padding-top: 104px;
}

.section-card {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(12, 12, 12, 0.78);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  transition: opacity 0.75s ease, transform 0.75s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
  border-color: rgba(232, 255, 71, 0.22);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.62);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.seo-infobox {
  max-width: 900px;
  margin: -8px 0 28px;
  padding: 18px 20px;
  border: 1px solid rgba(232, 255, 71, 0.22);
  border-radius: 8px;
  color: var(--text);
  background: rgba(232, 255, 71, 0.08);
  font-size: 1.02rem;
  font-weight: 500;
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 250px;
  padding: 26px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.card:hover,
.price-card:hover {
  border-color: rgba(232, 255, 71, 0.58);
  background: linear-gradient(180deg, rgba(232, 255, 71, 0.08), rgba(255, 255, 255, 0.018));
}

.card p {
  color: var(--accent);
  font-weight: 700;
}

.card span,
.offer-copy p,
.price-card li,
.contact-copy,
.footer-bottom {
  color: var(--muted);
}

.notice-band,
.custom-offer {
  margin-top: 24px;
  padding: 22px 26px;
  border: 1px solid rgba(232, 255, 71, 0.22);
  border-radius: 8px;
  background: var(--accent-soft);
}

.offer-section {
  background: transparent;
}

.spots-box {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 18px;
  padding: 18px 22px;
  border-radius: 8px;
  border: 1px solid rgba(232, 255, 71, 0.34);
  background: rgba(232, 255, 71, 0.1);
}

.spots-box strong {
  color: var(--accent);
}

.price-compare {
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-head {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-row strong {
  color: var(--accent);
}

.compare-row s,
.price s {
  color: #848178;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.price-card.featured {
  border-color: rgba(232, 255, 71, 0.55);
  background: linear-gradient(180deg, rgba(232, 255, 71, 0.12), rgba(255, 255, 255, 0.025));
}

.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 18px 0 24px;
}

.price span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.9rem;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--accent);
}

.custom-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.custom-offer p {
  margin: 0;
}

.brand-tabs {
  margin-bottom: 18px;
}

.tab {
  min-height: 42px;
  padding: 0 18px;
  color: #0a0a0a;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-weight: 700;
}

.reference-block {
  padding: 26px;
}

.reference-intro {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 28px;
  text-align: center;
}

.reference-intro h3 {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
}

.reference-intro p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-weight: 700;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.media-grid .video-frame,
.media-grid .square-frame,
.media-grid .story-frame {
  grid-column: auto;
  aspect-ratio: auto;
  min-height: 0;
  height: clamp(150px, 16vw, 220px);
}

.media-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
  background:
    linear-gradient(135deg, rgba(232, 255, 71, 0.14), transparent 38%),
    linear-gradient(180deg, #1a1d16, #101010);
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition: border-color 0.2s ease, filter 0.2s ease;
}

.media-frame:hover {
  border-color: rgba(232, 255, 71, 0.58);
  filter: brightness(1.08);
}

.apex-video-one {
  background-image:
    linear-gradient(135deg, rgba(232, 255, 71, 0.16), rgba(0, 0, 0, 0.38)),
    url("assets/images/apex-video-1.png"),
    linear-gradient(180deg, #1a1d16, #101010);
}

.apex-video-two {
  background-image:
    linear-gradient(135deg, rgba(232, 255, 71, 0.16), rgba(0, 0, 0, 0.38)),
    url("assets/images/apex-video-2.png"),
    linear-gradient(180deg, #1a1d16, #101010);
}

.apex-post-one {
  background-image:
    linear-gradient(135deg, rgba(232, 255, 71, 0.12), rgba(0, 0, 0, 0.28)),
    url("assets/images/apex-post-1.png"),
    linear-gradient(180deg, #1a1d16, #101010);
}

.apex-post-two {
  background-image:
    linear-gradient(135deg, rgba(232, 255, 71, 0.12), rgba(0, 0, 0, 0.28)),
    url("assets/images/apex-post-2.png"),
    linear-gradient(180deg, #1a1d16, #101010);
}

.apex-story-one {
  background-image:
    linear-gradient(135deg, rgba(232, 255, 71, 0.12), rgba(0, 0, 0, 0.28)),
    url("assets/images/apex-story-1.png"),
    linear-gradient(180deg, #1a1d16, #101010);
}

.video-frame {
  min-height: 440px;
}

.square-frame {
  aspect-ratio: 1;
}

.story-frame {
  aspect-ratio: 9 / 16;
}

.play {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding-left: 4px;
  color: #0a0a0a;
  background: var(--accent);
  border-radius: 50%;
  font-size: 1.35rem;
}

.media-label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-stage {
  display: grid;
  justify-items: center;
  margin: 0;
}

.lightbox-media {
  display: grid;
  place-items: center;
  width: min(86vw, 980px);
  max-height: 82vh;
}

.lightbox-media img,
.lightbox-media video {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050505;
}

.lightbox-stage figcaption {
  display: none;
}

.lightbox-close,
.lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: var(--accent);
  background: rgba(232, 255, 71, 0.12);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  font-size: 3rem;
  line-height: 0;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

body.is-lightbox-open {
  overflow: hidden;
}

.contact-grid {
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 14px;
}

.contact-copy h2 {
  margin-bottom: 4px;
}

.contact-copy a {
  width: fit-content;
  color: var(--text);
  font-weight: 700;
}

.spots-inline {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(232, 255, 71, 0.22);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.split {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 255, 71, 0.08);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.form-status.success {
  color: var(--accent);
}

.form-status.error {
  color: #ff9d8f;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 18px 54px 18px 20px;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  max-width: 860px;
}

.site-footer {
  padding: 42px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: start;
}

.footer-brand {
  font-size: 2.55rem;
}

.footer-contact {
  justify-self: end;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-link-button {
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.footer-link-button:hover {
  color: var(--accent);
}

.reveal {
  --entry-y: 42px;
  --reveal-y: var(--entry-y);
  --float-y: 0px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--float-y)), 0);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.section-card.reveal {
  --entry-y: 64px;
  transition: opacity 0.75s ease, transform 0.75s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.section-card.reveal.is-visible {
  --reveal-y: 0px;
}

@keyframes drift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(0deg);
  }
  to {
    transform: translate3d(3%, 2%, 0) rotate(14deg);
  }
}

@keyframes backdropDrift {
  from {
    background-position: 0% 0%, 50% 48%, 50% 52%, 0% 50%;
    transform: scale(1) rotate(0deg);
  }
  to {
    background-position: 0% 0%, 54% 46%, 47% 55%, 100% 50%;
    transform: scale(1.04) rotate(5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .page-backdrop {
    animation: none;
    opacity: 0.18;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .offer-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header .button,
  .footer-contact {
    justify-self: end;
  }

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

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

  .hero-panel {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 14px;
    gap: 12px;
  }

  .brand {
    font-size: 1.7rem;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 72px;
  }

  h1 {
    font-size: clamp(4.85rem, 18vw, 6.6rem);
    line-height: 0.9;
  }

  h2 {
    font-size: 3rem;
  }

  .section {
    padding: 38px 0;
  }

  .hero + .section {
    padding-top: 76px;
  }

  .section-card {
    padding: 22px;
  }

  .hero-panel,
  .service-grid,
  .media-grid,
  .form-row.split {
    grid-template-columns: 1fr;
  }

  .media-grid .video-frame,
  .media-grid .square-frame,
  .media-grid .story-frame {
    grid-column: auto;
    height: 220px;
  }

  .card {
    min-height: 150px;
  }

  .check-card {
    min-height: 72px;
  }

  .video-frame {
    min-height: 360px;
  }

  .custom-offer,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 66px);
  }

  .lightbox-next {
    right: calc(50% - 66px);
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-contact {
    justify-self: start;
  }
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(14, 14, 14, 0.96);
  border-top: 1px solid rgba(232, 255, 71, 0.22);
  backdrop-filter: blur(18px);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 780px;
}

.cookie-banner p strong {
  color: var(--text);
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
}

.cookie-accept,
.cookie-decline {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font: 700 0.88rem var(--font-body);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.cookie-accept {
  border: 1px solid transparent;
  color: #0a0a0a;
  background: var(--accent);
}

.cookie-decline {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.cookie-accept:hover {
  background: #d5ed32;
  transform: translateY(-1px);
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
  }
