:root {
  --color-bg: #f7f2fb;
  --color-surface: #ffffff;
  --color-primary: #7132ca;
  --color-secondary: #301ca0;
  --color-accent: #f29aae;
  --color-accent-soft: #c47be4;
  --color-text: #241f3a;
  --color-muted: #625a86;
  --color-border: #dfd6f2;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", Tahoma, sans-serif;
  --shadow-soft: 0 8px 24px rgba(48, 28, 160, 0.12);
  --shadow-hover: 0 12px 30px rgba(48, 28, 160, 0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 56px;
  --gradient-aurora: linear-gradient(135deg, rgba(242, 154, 174, 0.32), rgba(196, 123, 228, 0.35), rgba(113, 50, 202, 0.35));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  background-image: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.7), transparent 40%), radial-gradient(circle at 85% 10%, rgba(196, 123, 228, 0.16), transparent 38%);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover,
a:focus-visible {
  color: var(--color-primary);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 74px;
}

.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;
  }
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.nav-list a {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: #ece4fb;
  border-color: #d4c3f0;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(130deg, rgba(241, 176, 195, 0.56), rgba(113, 50, 202, 0.72));
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.66), rgba(48, 28, 160, 0.15));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
}

.hero-content {
  animation: fadeUp 0.7s ease both;
}

.hero-media {
  animation: fadeUp 0.9s ease both;
}

h1,
h2,
h3 {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-display);
  color: var(--color-secondary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.subtitle {
  font-size: 1.2rem;
  margin-top: 0;
}

.rating-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.rating {
  margin: 0;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  background: #f9efff;
  color: var(--color-secondary);
  font-weight: 600;
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: var(--space-md);
}

.hero-points {
  display: grid;
  gap: 8px;
  margin-top: var(--space-md);
}

.hero-points p {
  margin: 0;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(196, 123, 228, 0.34);
}

.old-price {
  color: var(--color-muted);
  text-decoration: line-through;
}

.new-price {
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 700;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.section {
  padding: var(--space-xl) 0;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.section article,
.faq-grid article,
form,
.cookie-content {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
}

.section article {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lift-on-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

ul {
  margin: 0;
  padding-left: 20px;
}

.enhanced-list li {
  margin-bottom: 8px;
}

.info-note {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #f4eefc;
}

.info-note p {
  margin: 0;
}

form {
  display: grid;
  gap: var(--space-xs);
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfc3ea;
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(113, 50, 202, 0.15);
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.checkbox-wrap input {
  width: auto;
  margin-top: 4px;
}

.btn-primary,
.btn-secondary {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
}

.btn-secondary {
  background: #efe8fb;
  color: var(--color-secondary);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.error {
  min-height: 18px;
  margin: 0 0 4px;
  color: #b42318;
  font-size: 0.9rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.interactive-faq .faq-item {
  display: grid;
  gap: 8px;
  align-content: start;
}

.faq-toggle {
  border: 1px solid var(--color-border);
  background: #f7f3ff;
  color: var(--color-secondary);
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 700;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-toggle:hover,
.faq-toggle:focus-visible {
  background: #efe6fd;
  border-color: #cdb8ec;
}

.faq-answer {
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  opacity: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.timeline-item {
  background: var(--gradient-aurora);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-4px) scale(1.01);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat-grid div {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #f9f6ff;
  padding: 10px;
  display: grid;
  gap: 4px;
}

.stat-grid strong {
  color: var(--color-secondary);
}

.stat-grid span {
  color: var(--color-muted);
  font-size: 0.93rem;
}

.cta iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-md);
}

.disclaimer p {
  margin: 0;
  background: #f9eff4;
  border: 1px solid #f2c2cf;
  padding: 16px;
  border-radius: var(--radius-md);
}

.site-footer {
  padding: var(--space-lg) 0;
  background: linear-gradient(180deg, #f0e8fb, #ece4fa);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  gap: var(--space-sm);
}

.site-footer ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: 0;
}

.cookie-banner {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  width: min(420px, 90%);
  z-index: 30;
}

.cookie-content {
  display: grid;
  gap: var(--space-sm);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-settings {
  display: grid;
  gap: 6px;
}

.policy-main {
  padding: var(--space-xl) 0;
}

.policy-main article {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.policy-main h1 {
  margin-bottom: var(--space-md);
}

@keyframes fadeUp {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 920px) {

  .hero-grid,
  .two-col,
  .faq-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }
}