:root {
  --bg: #070707;
  --bg2: #0d0d0d;
  --bg3: #141414;
  --bg4: #1c1c1c;
  --gold: #c8a66a;
  --gold-dim: #8a6f3e;
  --gold-light: #e8d4a8;
  --text: #ddd4c6;
  --text-muted: #706860;
  --text-dim: #3a3530;
  --border: #201c16;
  --border2: #2a251e;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Subtle noise */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}

/* --- NAV --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(7, 7, 7, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 4rem;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.nav-logo span {
  color: var(--gold);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.lang-switcher {
  display: flex;
  gap: 0.25rem;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.25rem 0.45rem;
  transition: color 0.2s;
  border-radius: 2px;
}
.lang-btn.active {
  color: var(--gold);
}
.lang-btn:hover {
  color: var(--text-muted);
}
.nav-cta {
  display: inline-block;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

/* --- HERO --- */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 8rem 4rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 55% 55% at 75% 35%,
      rgba(200, 166, 106, 0.055) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 35% 50% at 15% 85%,
      rgba(200, 166, 106, 0.03) 0%,
      transparent 60%
    );
}
.hero-line {
  position: absolute;
  top: 0;
  right: 22%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 166, 106, 0.08) 30%,
    rgba(200, 166, 106, 0.08) 70%,
    transparent
  );
}
.hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-label::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-label::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(3.8rem, 9vw, 9rem);
  font-weight: 300;
  color: var(--gold-light);
  max-width: 14ch;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 44ch;
  margin-bottom: 3.5rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-actions {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.6rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 166, 106, 0.2);
}
.btn-ghost {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.25s;
}
.btn-ghost span {
  transition: transform 0.25s;
}
.btn-ghost:hover {
  color: var(--gold);
}
.btn-ghost:hover span {
  transform: translateX(4px);
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3.5rem;
  color: var(--text-dim);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.scroll-line {
  width: 1px;
  height: 32px;
  background: var(--border2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollBar 2s 1.5s ease-in-out infinite;
}

/* --- MARQUEE --- */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--bg2);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 80s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 2.5rem;
  font-size: 0.85rem;
}
.marquee-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- SECTIONS --- */
section {
  padding: 7rem 4rem;
}
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold-light);
  max-width: 16ch;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-desc {
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 4rem;
  font-size: 0.95rem;
}

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card.ai-card {
  background: var(--bg2);
}
.service-card.ai-card .service-num {
  color: rgba(200, 166, 106, 0.12);
}
.ai-badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(200, 166, 106, 0.08);
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.service-card {
  background: var(--bg);
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover {
  background: var(--bg2);
}
.service-card:hover::after {
  width: 100%;
}
.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--bg3);
  line-height: 1;
  margin-bottom: 1.8rem;
  transition: color 0.4s;
  user-select: none;
}
.service-card:hover .service-num {
  color: var(--bg4);
}
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.service-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.service-price {
  margin-top: 1.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

/* --- PROCESS --- */
.process-section {
  background: var(--bg2);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.process-step {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--bg4);
  line-height: 1;
  margin-bottom: 1.8rem;
}
.process-step h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.process-step p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* --- PRICING --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  border: 1px solid var(--border);
  padding: 2.8rem 2.4rem;
  position: relative;
  transition: border-color 0.3s;
}
.pricing-card:hover:not(.featured) {
  border-color: var(--border2);
}
.pricing-card.featured {
  border-color: var(--gold-dim);
  background: var(--bg2);
}
.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 1.1rem;
}
.pricing-plan {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.pricing-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pricing-price sup {
  font-size: 1.4rem;
  vertical-align: super;
  color: var(--gold);
  margin-right: 0.1rem;
}
.pricing-price.custom {
  font-size: 2.2rem;
}
.pricing-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.pricing-features li {
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.pricing-features li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.45rem;
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.pricing-features li.hi {
  color: var(--text);
}
.btn-outline {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid var(--gold-dim);
  color: var(--gold-light);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
}
.btn-outline:hover,
.featured .btn-outline {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

/* --- WHY --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.stat-item {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.why-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.why-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
  transition: all 0.3s;
}
.why-item:hover .why-icon {
  border-color: var(--gold-dim);
  background: rgba(200, 166, 106, 0.05);
}
.why-item h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.why-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- CONTACT --- */
.contact-section {
  background: var(--bg2);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 8rem 4rem;
}
.contact-section .section-label {
  justify-content: center;
}
.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  color: var(--gold-light);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.contact-title em {
  font-style: italic;
  color: var(--gold);
}
.contact-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3.5rem;
}
.contact-email-link {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  color: var(--gold);
  display: inline-block;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.2rem;
  transition: all 0.25s;
}
.contact-email-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
  text-align: left;
}
.contact-half {
  background: var(--bg);
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.contact-half::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-half:hover {
  background: var(--bg2);
}
.contact-half:hover::after {
  width: 100%;
}
.contact-half-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-half-icon svg {
  width: 20px;
  height: 20px;
}
.contact-half-label {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-half-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  color: var(--gold-light);
  line-height: 1.2;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.2rem;
  display: inline-block;
  transition: all 0.25s;
}
.contact-half:hover .contact-half-value {
  color: var(--gold);
  border-color: var(--gold);
}
.contact-half-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-half {
    padding: 2.5rem 2rem;
  }
}

/* --- FOOTER --- */
footer {
  padding: 2.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-link {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--gold);
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollBar {
  0% {
    top: -100%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.reveal:nth-child(5) {
  transition-delay: 0.32s;
}
.reveal:nth-child(6) {
  transition-delay: 0.4s;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  nav,
  nav.scrolled {
    padding: 1.2rem 2.5rem;
  }
  section {
    padding: 5.5rem 2.5rem;
  }
  .hero {
    padding: 7rem 2.5rem 5rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  nav,
  nav.scrolled {
    padding: 1rem 1.5rem;
  }
  section {
    padding: 4.5rem 1.5rem;
  }
  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .contact-section {
    padding: 6rem 1.5rem;
  }
}
@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .why-stats {
    grid-template-columns: 1fr 1fr;
  }
  .nav-cta {
    display: none;
  }
}

.legal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.legal-modal-overlay.active {
  display: flex;
}
.legal-modal-box {
  background: var(--bg, #111);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 640px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  color: var(--text, #ccc);
}
.legal-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.6;
}
.legal-modal-close:hover {
  opacity: 1;
}
.legal-modal-content {
  display: none;
}
.legal-modal-content.active {
  display: block;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  transform: none;
  width: auto;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg2);
  border: 1px solid var(--border2);
  z-index: 8888;
  animation: fadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.cookie-banner-inner {
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.cookie-banner-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}
.cookie-banner-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.cookie-options {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text);
  cursor: pointer;
}
.cookie-option input[type="checkbox"] {
  accent-color: var(--gold);
  width: 14px;
  height: 14px;
}
.cookie-option input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-required {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.cookie-hint {
  font-size: 0.65rem;
  color: var(--text-dim);
}
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-btn-reject {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  margin-right: auto;
  transition: color 0.2s;
}
.cookie-btn-reject:hover {
  color: var(--text);
}
.cookie-btn-save {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text-muted);
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  transition: all 0.2s;
}
.cookie-btn-save:hover {
  border-color: var(--gold-dim);
  color: var(--text);
}
.cookie-btn-accept {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg);
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.6rem 1.4rem;
  transition: all 0.2s;
}
.cookie-btn-accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
@media (max-width: 600px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
  }
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-btn-reject {
    margin-right: 0;
    text-align: center;
  }
}

/* Stats row mobile */
@media (max-width: 768px) {
  #why > div[style*="repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #why > div[style*="repeat(2"] {
    grid-template-columns: 1fr !important;
  }
}