@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: #FAFBFD;
  --bg-2: #F1F5F9;
  --bg-3: #E8EEF5;
  --surface: #FFFFFF;
  --surface-2: #F8FAFC;
  --surface-3: #EEF2F7;
  --text: #0F172A;
  --text-muted: #475569;
  --text-dim: #64748B;
  --accent: #0891B2;
  --accent-2: #F59E0B;
  --accent-3: #7C3AED;
  --accent-4: #EC4899;
  --accent-5: #10B981;
  --grad-1: linear-gradient(135deg, #06B6D4 0%, #7C3AED 100%);
  --grad-2: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
  --grad-3: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
  --grad-4: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --grad-5: linear-gradient(135deg, #06B6D4 0%, #10B981 100%);
  --grad-6: linear-gradient(135deg, #F59E0B 0%, #06B6D4 100%);
  --grad-btn: linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #F59E0B 100%);
  --grad-btn-hover: linear-gradient(135deg, #6D28D9 0%, #DB2777 50%, #D97706 100%);
  --border: #E2E8F0;
  --border-soft: rgba(15, 23, 42, 0.08);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --fs-display: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  --fs-h1: clamp(2rem, 4vw + 0.5rem, 3.25rem);
  --fs-h2: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  --fs-h3: clamp(1.25rem, 1.5vw + 0.5rem, 1.625rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.10);
  --shadow-glow-cyan: 0 0 40px rgba(6, 182, 212, 0.25);
  --shadow-glow-amber: 0 0 40px rgba(245, 158, 11, 0.25);
  --shadow-glow-purple: 0 0 40px rgba(124, 58, 237, 0.25);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main { flex: 1 0 auto; }

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

.gradient-text {
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.25rem;
  padding: 0.5rem 1.25rem;
  background: rgba(8, 145, 178, 0.08);
  border: 1px solid rgba(8, 145, 178, 0.25);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--fs-body);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--grad-btn);
  background-size: 200% 200%;
  color: white;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(236, 72, 153, 0.35);
  background-position: 100% 0;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--surface-2);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.875rem 0;
  background: rgba(250, 251, 253, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: transform 0.3s;
}

.logo:hover { transform: translateY(-2px); }

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

.logo-line1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-5);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.section-quiz {
  position: relative;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(ellipse at top right, rgba(6, 182, 212, 0.15), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(124, 58, 237, 0.10), transparent 55%),
    var(--bg);
  overflow: hidden;
}

.decor-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.decor-orb-1 {
  width: 380px;
  height: 380px;
  background: rgba(236, 72, 153, 0.20);
  top: -100px;
  right: -100px;
}

.decor-orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(16, 185, 129, 0.18);
  bottom: -80px;
  left: -80px;
}

.quiz-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: 120px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

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

.badge-emoji { font-size: 1.125rem; }

.hero-col h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 90%;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 700;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  margin-top: 0.5rem;
  border: 1px solid var(--border);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

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

.image-dial {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-glow-cyan);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dialRotate 10s ease-in-out infinite;
}

@keyframes dialRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(8deg); }
}

.dial-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: dialCounter 10s ease-in-out infinite;
}

@keyframes dialCounter {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-8deg); }
}

.dial-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.dial-label {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}

.stat-chip {
  text-align: center;
  padding: 1.125rem 0.875rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.stat-chip:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow-cyan);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 500;
}

.quiz-col {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.quiz-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.25rem;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.quiz-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  background: var(--grad-1);
  border-radius: 999px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-glow-cyan);
  white-space: nowrap;
}

.progress-wrapper {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.progress-bar {
  height: 10px;
  background: var(--bg-2);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.progress-fill {
  height: 100%;
  background: var(--grad-btn);
  background-size: 200% 200%;
  border-radius: 999px;
  width: 16.66%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: gradientShift 4s ease infinite;
}

.progress-text {
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  text-align: right;
  font-weight: 600;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.quiz-emoji {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 6px 16px rgba(6, 182, 212, 0.3));
}

.quiz-question {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text);
  line-height: 1.3;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.quiz-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.5rem 1rem;
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 110px;
  position: relative;
  overflow: hidden;
}

.quiz-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-1);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}

.quiz-option > * { position: relative; z-index: 1; }

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

.quiz-option:hover::before { opacity: 0.08; }

.quiz-option.selected {
  border-color: var(--accent-3);
  background: rgba(124, 58, 237, 0.08);
  box-shadow: var(--shadow-glow-purple);
}

.quiz-option.selected::before { opacity: 0.15; }

.option-emoji { font-size: 1.875rem; }

.option-text {
  font-size: var(--fs-small);
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

.quiz-form-wrapper {
  display: none;
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.form-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.form-intro-emoji {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  animation: bounce 1s ease;
}

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

.form-intro h3 {
  font-size: 1.625rem;
  margin-bottom: 0.5rem;
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-intro p {
  color: var(--text-muted);
  font-size: var(--fs-body);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: 600;
}

.form-input {
  padding: 1rem 1.25rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: all 0.3s;
  font-size: var(--fs-body);
  width: 100%;
  max-width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.12);
  background: var(--surface);
}

.form-input::placeholder { color: var(--text-dim); }

.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox-wrap input {
  margin-top: 0.125rem;
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox-wrap a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox-wrap a:hover { color: var(--accent-4); }

.form-submit {
  margin-top: 1.25rem;
  padding: 1.25rem 2rem;
  font-size: 1.0625rem;
  width: 100%;
}

.form-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  font-weight: 500;
}

.section-how {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at bottom right, rgba(245, 158, 11, 0.12), transparent 60%),
    var(--bg-2);
  overflow: hidden;
}

.section-how::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 1.25rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-1);
}

.step-card:nth-child(2)::before { background: var(--grad-2); }
.step-card:nth-child(3)::before { background: var(--grad-3); }

.step-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--grad-1);
  opacity: 0.06;
  transition: transform 0.5s;
}

.step-card:nth-child(2)::after { background: var(--grad-2); }
.step-card:nth-child(3)::after { background: var(--grad-3); }

.step-card:hover::after { transform: scale(1.2); }

.step-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.95;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.step-card:nth-child(2) .step-number {
  background: var(--grad-2);
  -webkit-background-clip: text;
  background-clip: text;
}

.step-card:nth-child(3) .step-number {
  background: var(--grad-3);
  -webkit-background-clip: text;
  background-clip: text;
}

.step-emoji {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.step-card h3 {
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.step-tag {
  font-size: var(--fs-tiny);
  padding: 0.375rem 0.875rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 600;
}

.section-benefits {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at top center, rgba(124, 58, 237, 0.08), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(236, 72, 153, 0.06), transparent 60%),
    var(--bg);
  overflow: hidden;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.benefit-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

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

.benefit-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--grad-1);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.benefit-card:nth-child(2)::before { background: var(--grad-2); }
.benefit-card:nth-child(3)::before { background: var(--grad-3); }
.benefit-card:nth-child(4)::before { background: var(--grad-4); }
.benefit-card:nth-child(5)::before { background: var(--grad-5); }
.benefit-card:nth-child(6)::before { background: var(--grad-6); }

.benefit-emoji {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.25));
}

.benefit-card h3 {
  margin-bottom: 0.875rem;
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.benefit-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--fs-tiny);
  font-weight: 700;
  color: var(--accent);
}

.section-info {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at left center, rgba(6, 182, 212, 0.10), transparent 60%),
    var(--bg-3);
  overflow: hidden;
}

.section-info::before {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.info-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  background: var(--grad-1);
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-glow-cyan);
}

.info-card:nth-child(2) .info-card-icon {
  background: var(--grad-2);
  box-shadow: var(--shadow-glow-amber);
}

.info-card:nth-child(3) .info-card-icon {
  background: var(--grad-3);
  box-shadow: var(--shadow-glow-cyan);
}

.info-card:nth-child(4) .info-card-icon {
  background: var(--grad-4);
  box-shadow: var(--shadow-glow-purple);
}

.info-card h3 {
  margin-bottom: 1.125rem;
  font-size: 1.375rem;
}

.info-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.info-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-chip {
  padding: 0.5rem 0.875rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: var(--fs-tiny);
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s;
}

.spec-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.section-faq {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at right, rgba(16, 185, 129, 0.08), transparent 60%),
    var(--bg-2);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover { border-color: rgba(8, 145, 178, 0.4); }

.faq-item.open {
  background: var(--surface);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow-cyan);
}

.faq-question {
  width: 100%;
  padding: 1.625rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
  min-height: 44px;
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.faq-emoji {
  font-size: 1.625rem;
  flex-shrink: 0;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  border: 1px solid var(--border);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--grad-1);
  color: white;
  border-color: transparent;
}

.faq-answer {
  padding: 0 2rem 1.75rem;
  padding-left: 5rem;
  color: var(--text-muted);
  line-height: 1.75;
  display: none;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.4s ease;
}

.site-footer {
  background: var(--surface);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 320px;
  font-size: var(--fs-small);
  line-height: 1.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: var(--fs-small);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: "◆";
  font-size: 0.5rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links a:hover::before { opacity: 1; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  line-height: 1.5;
}

.footer-contact-emoji {
  flex-shrink: 0;
  font-size: 1.125rem;
}

.footer-disclaimer {
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.75;
  text-align: center;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copyright {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-dim);
  font-size: var(--fs-tiny);
  letter-spacing: 0.02em;
}

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

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  background: var(--grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content .legal-updated {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.625rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-content h2::before {
  content: "";
  width: 6px;
  height: 28px;
  background: var(--grad-1);
  border-radius: 4px;
  flex-shrink: 0;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content li::marker {
  color: var(--accent);
}

.legal-callout {
  padding: 1.5rem 1.75rem;
  background: var(--bg-2);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  margin: 2rem 0;
  color: var(--text);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
}

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

.legal-section {
  background: var(--surface);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.legal-section:nth-child(even) {
  background: var(--surface-2);
}

.legal-section h2 {
  margin-top: 0;
}

.thanks-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background:
    radial-gradient(ellipse at center, rgba(124, 58, 237, 0.10), transparent 70%),
    var(--bg);
}

.thanks-card {
  max-width: 640px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.thanks-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--grad-btn);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.thanks-emoji {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: bounce 1.2s ease;
}

.thanks-card h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--grad-btn);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.thanks-steps {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.thanks-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.thanks-step-num {
  width: 36px;
  height: 36px;
  background: var(--grad-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  flex-shrink: 0;
  color: white;
}

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

.thanks-step-content p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin: 0;
  line-height: 1.5;
}

.thanks-contact {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.thanks-contact a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.thanks-back {
  margin-top: 2rem;
}

[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;
}

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

  .quiz-grid > *,
  .hero-col,
  .steps-grid > *,
  .benefits-grid > *,
  .info-grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .quiz-grid { grid-template-columns: 1fr; }
  .hero-col { position: static; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .header-badge { display: none; }

  .header-inner {
    justify-content: center;
  }

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

  .benefits-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .quiz-col { padding: 1.75rem 1.5rem; }
}

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

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

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

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

  .hero-image-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: visible;
    aspect-ratio: auto;
  }

  .hero-image-wrap img {
    border-radius: var(--radius-lg);
  }

  .image-dial {
    position: static;
    margin: 0 auto;
    animation: none;
  }

  .dial-center {
    animation: none;
  }

  .quiz-options { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq-question { padding: 1.25rem; font-size: 1rem; }
  .faq-answer { padding: 0 1.25rem 1.25rem; padding-left: 3.75rem; }
  .section-quiz { padding: 3rem 0 4rem; }
  .section-how, .section-benefits, .section-info, .section-faq { padding: 4rem 0; }
  .thanks-card { padding: 2.5rem 1.75rem; }
  .thanks-card h1 { font-size: 2rem; }
  .step-card, .info-card { padding: 2rem 1.5rem; }
  .quiz-header { flex-direction: column; align-items: stretch; }
}

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

  .quiz-col {
    padding: 1.25rem 1rem;
  }

  .lead-form {
    gap: 0.875rem;
  }

  .form-input,
  .btn,
  .form-submit {
    font-size: 0.9375rem;
  }

  .hero-col h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-header h2 {
    font-size: clamp(1.375rem, 5vw, 1.75rem);
  }

  .legal-content {
    padding: 2.5rem 1rem;
  }
}

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