:root {
  --color-primary: #fe81d4;
  --color-secondary: #faacbf;
  --color-tertiary: #fbc3c1;
  --color-accent: #ffeabb;
  --color-bg: #fffafc;
  --color-text: #2a1f26;
  --color-muted: #65515e;
  --color-white: #ffffff;
  --color-link-hover: #9c3774;
  --color-price: #972c68;
  --color-input-border: #d7c6cf;
  --color-error: #b0185d;
  --color-button-hover: #de57b3;
  --color-footer-bg: #281d24;
  --color-footer-text: #f6e8ef;
  --font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-display: "Georgia", "Times New Roman", serif;
  --shadow-soft: 0 10px 30px rgba(42, 31, 38, 0.08);
  --shadow-hover: 0 16px 40px rgba(42, 31, 38, 0.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--color-link-hover);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--color-accent);
  font-size: 0.95rem;
}

.topbar-inner {
  padding: var(--space-1) 0;
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.nav-row {
  padding: var(--space-2) 0;
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
  border-radius: 50%;
}

.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;
  }
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

nav a {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
}

nav a:hover {
  background: var(--color-tertiary);
}

.hero {
  background: linear-gradient(135deg, var(--color-white), var(--color-tertiary));
  padding: var(--space-5) 0;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 20%), rgba(254, 129, 212, 0.28), transparent 55%);
  filter: blur(10px);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: center;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-muted);
  margin: 0 0 var(--space-1);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin-bottom: var(--space-2);
}

.lead {
  max-width: 55ch;
  line-height: 1.65;
}

.rating-wrap {
  margin: var(--space-2) 0;
  display: flex;
  gap: var(--space-2);
  align-items: center;
  flex-wrap: wrap;
}

.stars {
  font-weight: 700;
}

.badge {
  background: var(--color-accent);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
}

.badge--trust {
  background: rgba(255, 234, 187, 0.85);
  border: 1px solid rgba(255, 234, 187, 0.8);
}

.mini-note {
  color: var(--color-muted);
  font-size: 0.98rem;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.old-price {
  text-decoration: line-through;
  opacity: 0.7;
}

.price {
  font-size: 2rem;
  color: var(--color-price);
  font-weight: 700;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-media img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

section {
  padding: var(--space-5) 0;
}

.order {
  padding-top: 0;
}

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
}

form {
  display: grid;
  gap: 0.45rem;
}

input,
textarea,
button {
  font-family: inherit;
  font-size: 1rem;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-input-border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(254, 129, 212, 0.22);
}

.consent {
  margin-top: var(--space-1);
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.consent input {
  width: auto;
  margin-top: 0.2rem;
}

.error {
  min-height: 1.2em;
  color: var(--color-error);
  font-size: 0.86rem;
}

.form-disclaimer {
  margin: var(--space-1) 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

button {
  margin-top: var(--space-2);
  border: 0;
  cursor: pointer;
  padding: 0.85rem 1.2rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, background 0.2s ease;
}

button:hover {
  background: var(--color-button-hover);
  transform: translateY(-1px);
}

.cards {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards article,
.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease;
}

.cards article:hover,
.faq-item:hover {
  transform: translateY(-4px);
}

.tinted {
  background: linear-gradient(180deg, rgba(250, 172, 191, 0.25), rgba(251, 195, 193, 0.25));
}

.narrow {
  width: min(850px, 92%);
}

.cta {
  background: var(--color-accent);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.email-btn {
  background: var(--color-text);
  color: var(--color-white);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.email-btn:hover {
  color: var(--color-white);
  opacity: 0.88;
}

iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.disclaimer {
  padding-top: 0;
}

footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
}

.footer-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: var(--space-4) 0;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: var(--space-2) 0;
}

.cookie-banner {
  position: fixed;
  left: var(--space-2);
  right: var(--space-2);
  bottom: var(--space-2);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  padding: var(--space-3);
  z-index: 1000;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  pointer-events: none;
}

.cookie-settings {
  display: none;
  gap: var(--space-1);
  margin: var(--space-2) 0;
}

.cookie-settings.open {
  display: grid;
}

.cookie-actions {
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
}

.policy-main {
  min-height: 65vh;
}

.policy-content {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.step {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.spotlight {
  margin-top: var(--space-3);
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow-soft);
}

.spotlight-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--space-2);
}

.spotlight-tab {
  border: 1px solid rgba(50, 31, 38, 0.12);
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  font-weight: 700;
}

.spotlight-tab:hover {
  transform: translateY(-1px);
  background: rgba(251, 195, 193, 0.35);
  border-color: rgba(254, 129, 212, 0.35);
}

.spotlight-tab.is-active {
  background: rgba(254, 129, 212, 0.16);
  border-color: rgba(254, 129, 212, 0.55);
}

.spotlight-panels {
  margin-top: var(--space-2);
}

.spotlight-panel {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.spotlight-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.spotlight ul {
  margin: 0;
  padding-left: 1.2rem;
}

.spotlight li {
  margin: 0.4rem 0;
}

details.faq-item {
  padding: var(--space-3);
}

details.faq-item summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary h3 {
  margin: 0;
}

details.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--color-muted);
  font-weight: 900;
  transition: transform 0.25s ease;
}

details.faq-item[open] summary::after {
  content: "-";
}

details.faq-item p {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-top 0.35s ease;
  padding-top: 0;
}

details.faq-item[open] p {
  max-height: 240px;
  opacity: 1;
  padding-top: var(--space-2);
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .spotlight-panel,
  .cookie-banner,
  .hero-glow {
    transition: none !important;
  }
}

@media (max-width: 900px) {

  .hero-grid,
  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    gap: 0.4rem;
  }

  .steps {
    grid-template-columns: 1fr;
  }
}