:root {
  --color-bg: #0f0a0d;
  --color-surface: #1a1116;
  --color-surface-2: #22131c;
  --color-text: #f8f2f5;
  --color-muted: rgba(248, 242, 245, .78);
  --color-border: rgba(245, 173, 24, .28);
  --color-accent: #F5AD18;
  --color-accent-2: #9E1C60;
  --color-accent-3: #811844;
  --color-accent-4: #561530;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-display: ui-serif, Georgia, "Times New Roman", Times, serif;
  --text-xs: clamp(.82rem, .8rem + .1vw, .9rem);
  --text-sm: clamp(.92rem, .88rem + .2vw, 1.02rem);
  --text-md: clamp(1.02rem, .96rem + .35vw, 1.15rem);
  --text-lg: clamp(1.2rem, 1.05rem + .7vw, 1.55rem);
  --text-xl: clamp(1.6rem, 1.3rem + 1.4vw, 2.3rem);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .35);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, .45);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --container: 1120px;
  --focus: 0 0 0 4px rgba(245, 173, 24, .35);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(158, 28, 96, .55), transparent 60%),
    radial-gradient(900px 600px at 90% 15%, rgba(245, 173, 24, .35), transparent 60%),
    radial-gradient(900px 700px at 40% 110%, rgba(129, 24, 68, .6), transparent 62%),
    linear-gradient(180deg, rgba(15, 10, 13, 1), rgba(10, 7, 9, 1));
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: inherit
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4)
}

.skip-link {
  position: absolute;
  left: -999px;
  top: var(--space-3);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #1b0c11;
  font-weight: 700;
  text-decoration: none
}

.skip-link:focus {
  left: var(--space-3);
  outline: none;
  box-shadow: var(--focus)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(1.2) blur(10px);
  background: rgba(15, 10, 13, .7);
  border-bottom: 1px solid rgba(245, 173, 24, .18)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 14px 0
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(245, 173, 24, .18);
  background: rgba(26, 17, 22, .55);
  transition: transform .15s ease, background .15s ease, border-color .15s ease
}

.nav-link:hover {
  transform: translateY(-1px);
  background: rgba(34, 19, 28, .7);
  border-color: rgba(245, 173, 24, .35)
}

.nav-link:focus {
  outline: none;
  box-shadow: var(--focus)
}

.nav-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: var(--text-xs);
  background: rgba(245, 173, 24, .18);
  color: var(--color-accent)
}

.nav-cta {
  border-color: rgba(245, 173, 24, .5);
  background: rgba(245, 173, 24, .12)
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
  position: relative
}

.mobile-menu-toggle:focus {
  outline: none;
  box-shadow: var(--focus)
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px)
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px)
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .9);
  backdrop-filter: blur(10px);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s ease
}

.mobile-nav:not([hidden]) {
  transform: translateX(0)
}

.mobile-nav[aria-hidden="false"] {
  transform: translateX(0)
}

.mobile-nav-inner {
  padding: 80px var(--space-4) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 400px;
  margin: 0 auto
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid rgba(245, 173, 24, .18);
  background: rgba(26, 17, 22, .8);
  color: var(--color-text);
  font-size: var(--text-md);
  transition: all .2s ease
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background: rgba(34, 19, 28, .9);
  border-color: rgba(245, 173, 24, .4);
  transform: translateX(4px);
  outline: none;
  box-shadow: var(--focus)
}

.mobile-nav-cta {
  border-color: rgba(245, 173, 24, .5);
  background: rgba(245, 173, 24, .15);
  margin-top: var(--space-2)
}

.section {
  padding: clamp(44px, 5vw, 72px) 0
}

.section-header {
  margin-bottom: var(--space-4)
}

.section-header h2 {
  margin: 0 0 10px 0;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: .01em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .25), 0 18px 30px rgba(0, 0, 0, .35)
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
  max-width: 70ch
}

.tile {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 173, 24, .22);
  background:
    linear-gradient(180deg, rgba(34, 19, 28, .72), rgba(26, 17, 22, .62));
  background-size: cover;
  box-shadow: var(--shadow-sm);
  padding: var(--space-4)
}

.tiles-grid {
  display: grid;
  gap: var(--space-3)
}

.tiles-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.tiles-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-4);
  align-items: stretch
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: var(--space-3)
}

.eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: var(--text-xs)
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 1.7rem + 2vw, 3.2rem);
  line-height: 1.08
}

.hero-subtitle {
  margin: 0;
  color: var(--color-muted);
  max-width: 60ch
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: center
}

.trust-text {
  font-size: var(--text-sm);
  color: var(--color-muted)
}

.price-row {
  display: grid;
  gap: 6px
}

.price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 12px
}

.price-now {
  font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.4rem);
  font-weight: 900;
  color: var(--color-accent)
}

.price-old {
  font-size: var(--text-md);
  color: rgba(248, 242, 245, .7);
  text-decoration: line-through
}

.price-note {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm)
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-1)
}

.hero-figure {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.figure-caption {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm)
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease
}

.button:focus {
  outline: none;
  box-shadow: var(--focus)
}

.button:hover {
  transform: translateY(-1px)
}

.button-primary {
  background: linear-gradient(135deg, var(--color-accent), #ffd27a);
  color: #1b0c11;
  box-shadow: 0 18px 40px rgba(245, 173, 24, .18)
}

.button-primary:hover {
  box-shadow: 0 22px 56px rgba(245, 173, 24, .26)
}

.button-ghost {
  background: rgba(26, 17, 22, .45);
  border-color: rgba(245, 173, 24, .28);
  color: var(--color-text)
}

.button-ghost:hover {
  border-color: rgba(245, 173, 24, .45);
  background: rgba(34, 19, 28, .6)
}

.button-wide {
  width: 100%
}

.clean-list {
  margin: 0;
  padding-left: 18px
}

.clean-list li {
  margin: 8px 0
}

.steps {
  margin: 0;
  padding-left: 18px
}

.steps li {
  margin: 10px 0;
  color: var(--color-muted)
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4)
}

.order-form {
  display: grid;
  gap: var(--space-3)
}

.field {
  display: grid;
  gap: 8px
}

label {
  font-weight: 800
}

input,
textarea {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 173, 24, .22);
  padding: 12px 12px;
  background: rgba(15, 10, 13, .42);
  color: var(--color-text);
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease
}

input:focus,
textarea:focus {
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(245, 173, 24, .55)
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(255, 90, 90, .85)
}

.check {
  grid-template-columns: auto 1fr;
  align-items: start
}

.check label {
  font-weight: 650;
  color: var(--color-muted)
}

.check a {
  text-decoration: underline
}

.error {
  margin: 0;
  min-height: 1.3em;
  color: rgba(255, 120, 120, .92);
  font-size: var(--text-sm)
}

.muted {
  color: var(--color-muted)
}

.fineprint {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm)
}

.fineprint a {
  text-decoration: underline
}

.cta .cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4)
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.disclaimer {
  margin: var(--space-4) 0 0 0;
  color: var(--color-muted);
  font-size: var(--text-sm)
}

.site-footer {
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(245, 173, 24, .18);
  background: rgba(10, 7, 9, .55)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: var(--space-4);
  align-items: start
}

.footer-title {
  margin: 0 0 8px 0;
  font-family: var(--font-display);
  font-size: var(--text-lg)
}

.footer-links {
  display: grid;
  gap: 10px
}

.footer-links a {
  text-decoration: none;
  color: var(--color-muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease
}

.footer-links a:hover {
  background: rgba(34, 19, 28, .55);
  border-color: rgba(245, 173, 24, .22);
  color: var(--color-text)
}

.link-button {
  font: inherit;
  color: var(--color-muted);
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease
}

.link-button:hover {
  background: rgba(34, 19, 28, .55);
  border-color: rgba(245, 173, 24, .22);
  color: var(--color-text)
}

.link-button:focus {
  outline: none;
  box-shadow: var(--focus)
}

.footer-meta p {
  margin: 0 0 10px 0;
  color: var(--color-muted);
  font-size: var(--text-sm)
}

.footer-meta a {
  text-decoration: underline
}

.copyright {
  margin-top: var(--space-3);
  color: rgba(248, 242, 245, .68)
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: var(--space-3);
  background: rgba(10, 7, 9, .82);
  border-top: 1px solid rgba(245, 173, 24, .22);
  backdrop-filter: saturate(1.2) blur(10px)
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between
}

.cookie-content {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap
}

.cookie-title {
  margin: 0 0 6px 0;
  font-family: var(--font-display);
  font-size: var(--text-lg)
}

.cookie-text {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  max-width: 78ch;
  flex: 1
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: var(--space-4)
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62)
}

.modal-card {
  position: relative;
  width: min(760px, 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 173, 24, .22);
  background:
    linear-gradient(180deg, rgba(34, 19, 28, .92), rgba(26, 17, 22, .9));
  background-size: cover;
  box-shadow: var(--shadow-md)
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-4);
  border-bottom: 1px solid rgba(245, 173, 24, .18)
}

.modal-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg)
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(245, 173, 24, .22);
  background: rgba(15, 10, 13, .35);
  color: var(--color-text);
  font-size: 22px;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, background .15s ease
}

.icon-button:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 173, 24, .45);
  background: rgba(34, 19, 28, .6)
}

.icon-button:focus {
  outline: none;
  box-shadow: var(--focus)
}

.modal-body {
  padding: var(--space-4);
  display: grid;
  gap: var(--space-3)
}

.cookie-cats {
  display: grid;
  gap: var(--space-3)
}

.cookie-cat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 173, 24, .18);
  background: rgba(15, 10, 13, .35)
}

.cookie-cat h3 {
  margin: 0 0 6px 0
}

.cookie-cat p {
  margin: 0
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(245, 173, 24, .16);
  border: 1px solid rgba(245, 173, 24, .22);
  color: var(--color-accent);
  font-weight: 850;
  font-size: var(--text-xs)
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer
}

.switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.switch-ui {
  width: 54px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(245, 173, 24, .22);
  background: rgba(15, 10, 13, .35);
  position: relative;
  transition: background .15s ease, border-color .15s ease
}

.switch-ui::after {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  background: rgba(248, 242, 245, .9);
  transition: left .15s ease, background .15s ease
}

.switch input:checked+.switch-ui {
  background: rgba(245, 173, 24, .22);
  border-color: rgba(245, 173, 24, .5)
}

.switch input:checked+.switch-ui::after {
  left: 24px;
  background: var(--color-accent)
}

.switch:focus-within .switch-ui {
  box-shadow: var(--focus)
}

.modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: var(--space-4);
  border-top: 1px solid rgba(245, 173, 24, .18)
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .order-grid {
    grid-template-columns: 1fr
  }

  .tiles-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch
  }

  .cookie-actions {
    justify-content: flex-start
  }
}

.thank-you-section {
  padding: var(--space-6) 0
}

.thank-you-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg)
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center
}

.thank-you-title {
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: var(--space-3);
  color: var(--color-accent)
}

.thank-you-text {
  font-size: var(--text-md);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  color: var(--color-muted)
}

.thank-you-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-5);
  flex-wrap: wrap
}

.policy-section {
  padding: var(--space-6) 0
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-surface);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg)
}

.policy-title {
  font-size: var(--text-xl);
  font-weight: 900;
  margin-bottom: var(--space-2);
  color: var(--color-accent)
}

.policy-updated {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-5)
}

.policy-section-content {
  margin-bottom: var(--space-5)
}

.policy-section-content h2 {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-3);
  margin-top: var(--space-5);
  color: var(--color-text)
}

.policy-section-content h3 {
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: var(--space-2);
  margin-top: var(--space-4);
  color: var(--color-text)
}

.policy-section-content p {
  margin-bottom: var(--space-3);
  line-height: 1.7;
  color: var(--color-muted)
}

.policy-section-content ul {
  margin: var(--space-3) 0;
  padding-left: var(--space-5);
  list-style: disc;
  color: var(--color-muted)
}

.policy-section-content li {
  margin-bottom: var(--space-2);
  line-height: 1.6
}

.policy-section-content address {
  font-style: normal;
  margin-top: var(--space-3)
}

.policy-section-content address p {
  margin-bottom: var(--space-2)
}

.policy-section-content a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: opacity .2s ease
}

.policy-section-content a:hover {
  opacity: .8
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4)
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(4px);
  cursor: pointer
}

.cookie-modal-content {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-md)
}

.cookie-modal-title {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: var(--space-2);
  color: var(--color-accent)
}

.cookie-modal-text {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-4)
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4)
}

.cookie-option {
  padding: var(--space-3);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm)
}

.cookie-option-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer
}

.cookie-checkbox {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--color-accent)
}

.cookie-option-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1
}

.cookie-option-text strong {
  color: var(--color-text);
  font-weight: 700
}

.cookie-option-desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.5
}

.cookie-modal-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border)
}

.stats-section {
  padding: var(--space-6) 0;
  background: rgba(26, 17, 22, .4)
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  max-width: 900px;
  margin: 0 auto
}

.stat-item {
  text-align: center;
  padding: var(--space-5);
  transition: transform .3s ease, box-shadow .3s ease
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.stat-number {
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
  font-family: var(--font-display)
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3)
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .3s ease
}

.faq-item:hover {
  border-color: rgba(245, 173, 24, .4)
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--color-text);
  font-size: var(--text-md);
  font-weight: 700;
  gap: var(--space-3);
  transition: color .2s ease
}

.faq-question:hover {
  color: var(--color-accent)
}

.faq-question:focus {
  outline: none;
  box-shadow: var(--focus)
}

.faq-question[aria-expanded="true"] {
  color: var(--color-accent)
}

.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 173, 24, .15);
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: transform .3s ease, background .3s ease
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(245, 173, 24, .3)
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 var(--space-4)
}

.faq-question[aria-expanded="true"]+.faq-answer {
  max-height: 500px;
  padding: 0 var(--space-4) var(--space-4) var(--space-4)
}

.faq-answer p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7
}

.faq-answer a {
  color: var(--color-accent);
  text-decoration: underline
}

.testimonials-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  position: relative
}

.testimonial-slide {
  padding: var(--space-5);
  opacity: 1;
  transform: none;
  position: relative;
  width: 100%
}

.testimonial-slide.active {
  opacity: 1;
  transform: none;
  position: relative
}

.testimonial-rating {
  color: var(--color-accent);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  letter-spacing: 2px
}

.testimonial .quote {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-style: italic
}

.testimonial .byline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: var(--text-sm);
  color: var(--color-muted)
}

.testimonial .byline strong {
  color: var(--color-text);
  font-weight: 700
}

.testimonial .location {
  font-size: var(--text-xs)
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-5)
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(26, 17, 22, .6);
  color: var(--color-text);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease
}

.testimonial-btn:hover {
  background: rgba(245, 173, 24, .2);
  border-color: rgba(245, 173, 24, .4);
  transform: scale(1.1)
}

.testimonial-btn:focus {
  outline: none;
  box-shadow: var(--focus)
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 173, 24, .3);
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  padding: 0
}

.testimonial-dot.active {
  background: var(--color-accent);
  transform: scale(1.3)
}

.testimonials-disclaimer {
  margin-top: var(--space-5);
  padding: var(--space-4);
  background: rgba(158, 28, 96, .15);
  border: 1px solid rgba(158, 28, 96, .3);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-muted);
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.disclaimer-box {
  background: rgba(129, 24, 68, .2);
  border: 2px solid rgba(245, 173, 24, .3);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  margin-top: var(--space-5)
}

.disclaimer-box h3 {
  color: var(--color-accent);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  font-weight: 800
}

.disclaimer-box p {
  margin-bottom: var(--space-3);
  line-height: 1.7;
  color: var(--color-muted)
}

.disclaimer-box p:last-child {
  margin-bottom: 0
}

.disclaimer-box strong {
  color: var(--color-text);
  font-weight: 700
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

.tile {
  animation: fadeInUp .6s ease-out
}

.tile:nth-child(1) {
  animation-delay: .1s
}

.tile:nth-child(2) {
  animation-delay: .2s
}

.tile:nth-child(3) {
  animation-delay: .3s
}

.tile:nth-child(4) {
  animation-delay: .4s
}

.hero-title {
  animation: fadeInUp .8s ease-out
}

.hero-subtitle {
  animation: fadeInUp 1s ease-out
}

.hero-actions {
  animation: fadeInUp 1.2s ease-out
}

.hero-figure {
  animation: slideInRight .8s ease-out
}

@media (prefers-reduced-motion:reduce) {

  .tile,
  .hero-title,
  .hero-subtitle,
  .hero-actions,
  .hero-figure,
  .testimonial-slide,
  .faq-answer {
    animation: none;
    transition: none
  }
}

@media (max-width: 980px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .testimonials-carousel {
    overflow: hidden
  }

  .testimonials-track {
    display: flex;
    flex-direction: row;
    transition: transform .5s ease;
    position: relative
  }

  .testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity .5s ease, transform .5s ease
  }

  .testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-3)
  }

  .site-nav {
    display: none
  }

  .mobile-menu-toggle {
    display: flex
  }

  .tiles-2,
  .tiles-3 {
    grid-template-columns: 1fr
  }

  .cta .cta-inner {
    flex-direction: column;
    align-items: stretch
  }

  .thank-you-card,
  .policy-content {
    padding: var(--space-4)
  }

  .thank-you-actions {
    flex-direction: column
  }

  .cookie-modal-actions {
    flex-direction: column
  }

  .stats-grid {
    grid-template-columns: 1fr
  }

  .testimonial-btn {
    width: 36px;
    height: 36px;
    font-size: 20px
  }
}