@font-face {
  font-family: "Syne";
  src: url("../fonts/Syne.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F4F7FC;
  --surface: #FFFFFF;
  --surface-2: #EDF2FA;
  --surface-warm: #FFF9F5;
  --surface-mint: #F0FAF6;
  --surface-lavender: #F5F0FF;
  --surface-peach: #FFF5EF;
  --text: #1A2540;
  --text-muted: #5A6B85;
  --text-light: #8694A8;
  --accent: #6366F1;
  --accent-2: #F59E0B;
  --accent-3: #10B981;
  --accent-cool: #3B82F6;
  --accent-warm: #EF4444;
  --accent-purple: #A855F7;
  --border: #E2E8F0;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-cool: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-nature: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --gradient-klima: linear-gradient(90deg, #4facfe 0%, #43e97b 33%, #fa709a 66%, #fee140 100%);
  --gradient-hero: linear-gradient(135deg, #E0EAFF 0%, #F5F0FF 50%, #FFE8F5 100%);
  --gradient-btn: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-btn-hover: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --fs-display: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: clamp(1rem, 1.2vw, 1.0625rem);
  --fs-small: clamp(0.85rem, 1vw, 0.9375rem);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(26, 37, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 37, 64, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 37, 64, 0.12);
  --shadow-xl: 0 24px 64px rgba(26, 37, 64, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--accent-purple);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-badges {
  display: flex;
  gap: 12px;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--surface-2);
  border-radius: 100px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-divider {
  padding: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.klima-bar {
  height: 4px;
  background: var(--gradient-klima);
  border-radius: 2px;
  opacity: 0.6;
}

.klima-bar-sm {
  height: 3px;
  background: var(--gradient-klima);
  border-radius: 2px;
  width: 60px;
  margin-top: 16px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
}

.overline {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--surface-lavender);
  border-radius: 100px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-intro {
  font-size: clamp(1.0625rem, 1.3vw, 1.125rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.quiz-hero {
  background: var(--gradient-hero);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(250, 112, 154, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quiz-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: var(--fs-small);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.badge-cool {
  background: linear-gradient(135deg, #E0F2FE, #DBEAFE);
  color: #1E40AF;
}

.badge-warm {
  background: linear-gradient(135deg, #FEF3C7, #FEE2E2);
  color: #B45309;
}

.badge-mint {
  background: linear-gradient(135deg, #D1FAE5, #CFFAFE);
  color: #065F46;
}

.hero-left h1 {
  margin-bottom: 0;
  background: linear-gradient(135deg, #1A2540 0%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quiz-intro {
  font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
  color: var(--text-muted);
}

.hero-supporting {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 8px 0;
}

.hero-fc {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hero-fc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.fc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface-lavender);
  border-radius: 50%;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-fc strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: var(--fs-small);
  line-height: 1.2;
}

.hero-fc span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-muted);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gradient-nature);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.hero-right {
  position: sticky;
  top: 100px;
}

.quiz-container {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  position: relative;
}

.quiz-progress {
  height: 8px;
  background: var(--surface-2);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 16px;
}

.quiz-progress-fill {
  height: 100%;
  background: var(--gradient-klima);
  border-radius: 100px;
  transition: width 0.5s ease;
  width: 16.67%;
}

.quiz-step-counter {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.quiz-step.is-active {
  display: block;
}

.quiz-form-wrapper {
  display: none;
  animation: fadeIn 0.4s ease;
}

.quiz-form-wrapper.is-active {
  display: block;
}

.quiz-question {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 24px;
  color: var(--text);
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quiz-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  background: var(--surface-2);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  min-height: 120px;
  justify-content: center;
}

.quiz-option:hover,
.quiz-option:focus {
  background: var(--surface);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.option-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.option-text {
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
  font-size: var(--fs-body);
}

.option-desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.4;
}

.quiz-back {
  display: none;
  margin-top: 20px;
  padding: 10px 20px;
  color: var(--text-muted);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  font-size: var(--fs-small);
}

.quiz-back:hover {
  background: var(--surface-2);
  color: var(--text);
}

.form-success-header {
  text-align: center;
  margin-bottom: 28px;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gradient-nature);
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 16px;
  animation: pulse 2s infinite;
}

.form-success-header h3 {
  margin-bottom: 12px;
}

.form-success-header p {
  max-width: 480px;
  margin: 0 auto;
}

.quiz-form {
  max-width: 480px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  font-size: var(--fs-small);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: all 0.3s;
  background: var(--surface);
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-consent a {
  color: var(--accent);
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--fs-body);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
  min-height: 48px;
}

.btn-gradient {
  background: var(--gradient-btn);
  color: white;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.btn-gradient:hover {
  background: var(--gradient-btn-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--surface);
  background: var(--surface-2);
  aspect-ratio: 4 / 5;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame-wide {
  aspect-ratio: 16 / 9;
}

.image-frame-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(26, 37, 64, 0.85) 0%, transparent 100%);
  color: white;
  padding: 32px 20px 16px;
  font-size: var(--fs-small);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.statistics {
  background: var(--surface-warm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-card-accent {
  background: linear-gradient(135deg, #FEF3C7 0%, #FEE2E2 100%);
}

.stat-card-accent-2 {
  background: linear-gradient(135deg, #DBEAFE 0%, #EDE9FE 100%);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1;
}

.stat-label {
  font-weight: 700;
  color: var(--text);
  font-size: var(--fs-body);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}

.stats-image,
.info-image {
  max-width: 900px;
  margin: 0 auto;
}

.advantages {
  background: var(--surface);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-klima);
  opacity: 0;
  transition: opacity 0.3s;
}

.advantage-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.advantage-icon-cool {
  background: linear-gradient(135deg, #DBEAFE, #CFFAFE);
}

.advantage-icon-warm {
  background: linear-gradient(135deg, #FEF3C7, #FEE2E2);
}

.advantage-icon-nature {
  background: linear-gradient(135deg, #D1FAE5, #CFFAFE);
}

.advantage-card h3 {
  margin-bottom: 12px;
}

.advantage-card p {
  margin-bottom: 16px;
  font-size: var(--fs-small);
}

.advantage-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-block;
  padding: 4px 12px;
  background: var(--surface-2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.how-it-works {
  background: var(--surface-2);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-klima);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  font-size: var(--fs-small);
}

.info-faq {
  background: var(--surface);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.info-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-lavender) 100%);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.info-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.info-card h3 {
  margin-bottom: 12px;
}

.info-card p {
  margin-bottom: 16px;
}

.info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.info-image {
  margin-bottom: 48px;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: var(--fs-body);
  color: var(--text);
  width: 100%;
  text-align: left;
  gap: 16px;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-question.is-open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-answer.is-open {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
}

.site-footer {
  background: #0F1629;
  color: #CBD5E1;
  padding: 48px 0 24px;
  margin-top: auto;
  font-size: 0.9375rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.logo-footer .logo-text {
  background: linear-gradient(135deg, #A78BFA 0%, #F472B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: #94A3B8;
  margin-top: 12px;
  font-size: 0.9375rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: white;
  font-size: 1.125rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: #CBD5E1;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 4px;
  color: #CBD5E1;
  font-size: 0.9375rem;
}

.footer-contact strong {
  color: white;
  display: block;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #CBD5E1;
  display: inline;
  margin-bottom: 0;
}

.footer-contact a:hover {
  color: white;
}

.footer-disclaimer {
  border-top: 1px solid #1E293B;
  padding-top: 24px;
  margin-bottom: 24px;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #94A3B8;
}

.thanks-hero {
  background: var(--gradient-hero);
  padding: var(--space-xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thanks-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: var(--gradient-nature);
  border-radius: 50%;
  font-size: 3rem;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
  box-shadow: var(--shadow-lg);
}

.thanks-content h1 {
  margin-bottom: 16px;
}

.thanks-user {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  margin-bottom: 32px;
}

.thanks-steps {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
  text-align: left;
}

.thanks-steps h3 {
  margin-bottom: 20px;
  text-align: center;
}

.thanks-step {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.thanks-step:last-child {
  border-bottom: none;
}

.thanks-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9375rem;
}

.thanks-step-content h4 {
  font-family: var(--font-display);
  margin-bottom: 4px;
  font-size: 1.0625rem;
}

.thanks-step-content p {
  font-size: var(--fs-small);
}

.thanks-info {
  background: var(--surface-lavender);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  text-align: left;
}

.thanks-info h4 {
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.thanks-info p {
  font-size: var(--fs-small);
  margin-bottom: 8px;
}

.thanks-contact {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.thanks-contact h4 {
  font-family: var(--font-display);
  margin-bottom: 12px;
  text-align: center;
}

.thanks-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.thanks-contact-item {
  padding: 12px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
}

.thanks-contact-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.85rem;
}

.thanks-contact-item span,
.thanks-contact-item a {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.btn-home {
  background: var(--gradient-btn);
  color: white;
  padding: 16px 40px;
  font-size: var(--fs-body);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  text-decoration: none;
}

.btn-home:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.legal-page {
  background: var(--bg);
  padding: var(--space-lg) 0;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  word-break: break-word;
}

.legal-content h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-light);
  font-size: var(--fs-small);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 3px solid;
  border-image: var(--gradient-klima) 1;
}

.legal-content h3 {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-muted);
  line-height: 1.6;
}

.legal-callout {
  background: var(--surface-lavender);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}

.legal-callout p {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 500;
}

.legal-section-alt {
  background: var(--surface-2);
  margin: 24px -32px;
  padding: 24px 32px;
  border-radius: var(--radius-md);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-right {
    position: static;
  }

  .hero-supporting {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .header-badges {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-lg) 0;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }

  .hero-supporting {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .steps-grid,
  .advantages-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quiz-container {
    padding: 24px 20px;
  }

  .legal-content {
    padding: 32px 20px;
  }

  .legal-section-alt {
    margin: 24px -20px;
    padding: 20px;
  }

  .thanks-contact-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    font-size: 0.85rem;
  }
}

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="fade-up"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero-grid > *,
  .stats-grid > *,
  .advantages-grid > *,
  .steps-grid > *,
  .info-grid > *,
  .footer-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-text {
    word-break: break-all;
    min-width: 0;
  }

  .header-badge {
    word-break: break-all;
  }

  .footer-col {
    word-break: break-all;
  }

  .image-frame-caption {
    position: static;
    background: var(--surface-2);
    color: var(--text);
    padding: 12px 16px;
  }

  .image-frame {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
  }

  .image-frame img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: var(--space-md) 0;
  }

  .quiz-container {
    padding: 20px 16px;
  }

  .quiz-form input,
  .quiz-form button,
  .btn {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }

  .quiz-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .badge {
    justify-content: center;
  }

  .legal-content {
    padding: 24px 16px;
  }
}