:root {
  --color-primary: #f29f58;
  --color-secondary: #ab4459;
  --color-accent: #441752;
  --color-base: #1b1833;
  --color-text: #f7f7fb;
  --color-surface: #262247;
  --font-main: "Segoe UI", Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-lg: 1.25rem;
  --font-size-xl: 2.1rem;
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 18px 38px rgba(0, 0, 0, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --space-xs: 0.4rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.25rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: radial-gradient(circle at 20% 10%, #2f2a5e, var(--color-base) 50%);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  line-height: 1.5;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: #ffd4aa;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(27, 24, 51, 0.94);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  width: min(1200px, 94%);
  margin: 0 auto;
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-md) 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;
  }
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.nav-list a:hover {
  background: rgba(242, 159, 88, 0.2);
  transform: translateY(-1px);
}

.hero {
  width: min(1260px, 94%);
  margin: var(--space-xl) auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.hero-panel,
.form-card,
.content-section,
.hero-collage,
.cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-panel,
.form-card,
.content-section,
.cta {
  padding: var(--space-xl);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: var(--font-size-xl);
}

.badge {
  display: inline-block;
  background: var(--color-secondary);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.lead {
  max-width: 40ch;
}

.trust-row,
.price-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hero-points {
  margin: var(--space-md) 0 0;
  padding-left: 1.1rem;
}

.hero-points li {
  margin: 0.3rem 0;
}

.microcopy {
  margin-top: var(--space-sm);
  font-size: 0.88rem;
  color: #d7d2ef;
}

.price {
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  color: #c2bddb;
}

.hero-collage {
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 440px;
}

.hero-collage img {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: cover;
}

label {
  display: block;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-xs);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  background: #1f1b3e;
  color: var(--color-text);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(242, 159, 88, 0.55);
  border-color: transparent;
}

.error {
  min-height: 1.1rem;
  color: #ff9a9a;
  font-size: 0.9rem;
  margin: 0.25rem 0 0.4rem;
}

.consent {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-top: var(--space-md);
}

.consent input {
  width: auto;
  margin-top: 0.2rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #1f1020;
  padding: 0.72rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-secondary {
  background: #d2ceea;
}

.content-section,
.cta {
  width: min(1200px, 94%);
  margin: var(--space-lg) auto;
}

.interactive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.interactive-grid h2 {
  grid-column: 1 / -1;
}

.interactive-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.interactive-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(242, 159, 88, 0.6);
  box-shadow: var(--shadow-strong);
}

.timeline {
  position: relative;
}

.timeline article {
  padding-left: 1.3rem;
  border-left: 2px solid rgba(242, 159, 88, 0.6);
  margin-bottom: var(--space-md);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.map-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.cookie-banner {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  width: min(430px, 92vw);
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-settings {
  margin-top: var(--space-md);
  display: grid;
  gap: var(--space-sm);
}

.site-footer {
  padding: var(--space-lg) var(--space-sm);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer a {
  display: inline-block;
  margin: 0 0.2rem;
}

.legal-highlight {
  border-color: rgba(171, 68, 89, 0.7);
  background: linear-gradient(180deg, rgba(171, 68, 89, 0.2), rgba(68, 23, 82, 0.14));
}

.simple-page {
  width: min(1200px, 94%);
  margin: var(--space-xl) auto;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    min-height: 280px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .interactive-grid {
    grid-template-columns: 1fr;
  }
}