:root {
  --color-primary: #932F67;
  --color-secondary: #D92C54;
  --color-accent: #DDDEAB;
  --color-success: #8ABB6C;
  --color-muted: #f3f4ea;
  --color-bg: #fffdf8;
  --color-text: #222222;
  --color-border: #e5e5de;
  --font-heading: "Arial", "Helvetica", sans-serif;
  --font-body: "Verdana", "Tahoma", sans-serif;
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 14px 30px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 28px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 56px;
}

* {
  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.6;
}

h1,
h2,
h3 {
  line-height: 1.25;
  letter-spacing: 0.2px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-sm) 0;
  gap: var(--space-sm);
}

.logo-wrap {
  display: block;
}


.logo-wrap img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.logo-wrap img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.logo-wrap:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .logo-wrap img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .logo-wrap img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .logo-wrap img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .logo-wrap img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}


.plain-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.plain-nav a {
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.plain-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.25s ease;
}

.plain-nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.hero-overlay {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.35));
  display: grid;
  align-items: center;
  padding: var(--space-xl) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  color: #ffffff;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 var(--space-sm);
  font-family: var(--font-heading);
}

.hero-text {
  max-width: 56ch;
}

.badge,
.trust-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background: rgba(221, 222, 171, 0.2);
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
}

.old-price {
  text-decoration: line-through;
  opacity: 0.8;
}

.new-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.hero-points {
  margin: var(--space-md) 0 0;
  padding-left: 18px;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  animation: floatIn 1.1s ease;
}

.section {
  padding: var(--space-xl) 0;
  animation: fadeUp 0.55s ease;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(147, 47, 103, 0.35);
}

form {
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
}

.field {
  margin-bottom: var(--space-md);
}

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d0d0d0;
  border-radius: var(--radius-sm);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(147, 47, 103, 0.2);
}

.checkbox-field {
  display: flex;
  gap: var(--space-xs);
  align-items: flex-start;
}

.checkbox-field input {
  width: auto;
  margin-top: 3px;
}

.checkbox-field label {
  margin: 0;
  font-weight: 500;
}

.btn {
  display: inline-block;
  border: none;
  background: var(--color-secondary);
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(147, 47, 103, 0.3);
}

.btn-secondary {
  background: #5a5a5a;
}

.error-message {
  color: #b00020;
  min-height: 20px;
  font-size: 0.9rem;
  margin: 6px 0 0;
}

.faq-list article {
  background: #ffffff;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  font: inherit;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.35s ease, margin 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 180px;
  margin-top: 10px;
}

.accent-section {
  background: var(--color-muted);
}

.planner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.planner-btn {
  border: 1px solid var(--color-border);
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.planner-btn:hover,
.planner-btn.active {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.plan-card {
  margin-top: var(--space-md);
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.tab-btn {
  border: 1px solid var(--color-border);
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
}

.tab-btn.active {
  background: var(--color-success);
  border-color: var(--color-success);
}

.tab-panel {
  display: none;
  margin-top: var(--space-sm);
  padding: var(--space-md);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.tab-panel.active {
  display: block;
}

.nl-info-block {
  margin-top: var(--space-md);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-success);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.cta-section {
  background: var(--color-accent);
}

.cta-section iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
}

.disclaimer {
  background: #f8f2f5;
  font-weight: 600;
}

.site-footer {
  background: #181818;
  color: #f4f4f4;
  padding: var(--space-lg) 0;
}

.site-footer a {
  color: #f4f4f4;
}

.footer-nav {
  margin-bottom: var(--space-md);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #121212;
  color: #ffffff;
  padding: var(--space-md);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-settings {
  margin-top: var(--space-sm);
  display: grid;
  gap: var(--space-xs);
}

.policy-main {
  padding: 120px 0 var(--space-xl);
}

@keyframes fadeUp {
  from {
    opacity: 0.01;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0.01;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {

  .hero-grid,
  .two-col,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .section {
    padding: 42px 0;
  }

  .cookie-banner {
    position: static;
  }
}