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

:root {
  --color-sea: #0ea5e9;
  --color-sea-dark: #0284c7;
  --color-mountain: #059669;
  --color-mountain-dark: #047857;
  --color-sand: #fef3c7;
  --color-sand-dark: #fde68a;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-white: #ffffff;
  --color-error: #dc2626;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #e8eef4;
}

body.survey-mode .background__sun {
  opacity: 0.4;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.background__sea {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(160deg, #7dd3fc 0%, #38bdf8 45%, #0284c7 100%);
  opacity: 0.45;
}

.background__waves {
  position: absolute;
  top: 48%;
  left: -10%;
  right: -10%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C200,100 400,20 600,60 C800,100 1000,20 1200,60 L1200,120 L0,120 Z' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E") repeat-x;
  background-size: 600px 80px;
  animation: wave 8s linear infinite;
}

.background__mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, #047857 35%, #064e3b 100%);
  clip-path: polygon(0 40%, 8% 35%, 15% 42%, 22% 30%, 30% 38%, 38% 25%, 45% 35%, 52% 22%, 60% 32%, 68% 18%, 75% 28%, 82% 15%, 90% 25%, 100% 12%, 100% 100%, 0 100%);
  opacity: 0.35;
}

.background__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(232, 238, 244, 0.55) 0%,
    rgba(232, 238, 244, 0.82) 35%,
    rgba(232, 238, 244, 0.94) 70%,
    rgba(232, 238, 244, 0.98) 100%
  );
}

.background__sun {
  position: absolute;
  top: 8%;
  right: 12%;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #fde68a 0%, #fbbf24 50%, rgba(251, 191, 36, 0) 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.35;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 640px;
}

/* Header */
.header {
  padding: 16px 0;
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dbe3ec;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.header__inner {
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: transform 0.2s ease, color var(--transition);
}

.logo:hover {
  color: var(--color-sea-dark);
}

.logo__icon {
  font-size: 1.75rem;
  animation: spin-slow 20s linear infinite;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 14px;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-sea-dark);
}

.nav-links__cta {
  background: #e0f2fe;
  color: var(--color-sea-dark);
  padding: 6px 14px;
  border-radius: 999px;
}

.nav-links__cta:hover {
  background: #bae6fd;
  color: #0369a1;
}

.header__tagline {
  margin-top: 10px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

body.survey-mode .nav-links,
body.survey-mode .header__tagline {
  display: none;
}

/* Main */
.main {
  flex: 1;
  padding: 8px 0 48px;
}

#landing[hidden] {
  display: none;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px 20px 40px;
}

.hero__content {
  background: var(--color-white);
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}

.hero__pill {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.hero__promo {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 45%, #fde68a 100%);
  border: 2px solid #fbbf24;
  color: #92400e;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.22);
}

.hero__text {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--win {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45);
}

.btn--win:hover {
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.55);
}

.btn--hero-cta {
  width: 100%;
  padding: 20px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.urgency-card {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  border: 2px solid #fb7185;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 10px 28px rgba(244, 63, 94, 0.18);
}

.urgency-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #be123c;
  margin-bottom: 12px;
}

.urgency-card__live {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: urgency-pulse 1.8s ease-in-out infinite;
}

.urgency-card__count {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: #881337;
  margin-bottom: 10px;
}

.urgency-card__count strong {
  font-size: 2rem;
  color: #e11d48;
}

.urgency-card__text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #9f1239;
}

.hero__visual {
  position: relative;
  height: 240px;
}

.hero__card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: float-card 5s ease-in-out infinite;
}

.hero__card span:first-child {
  font-size: 1.75rem;
}

.hero__card strong {
  font-size: 1rem;
}

.hero__card small {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

.hero__card--sea {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero__card--mountain {
  top: 35%;
  right: 0;
  animation-delay: 1.5s;
}

.hero__card--home {
  bottom: 5%;
  left: 20%;
  animation-delay: 3s;
}

/* Stats */
.stats {
  margin-bottom: 48px;
}

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

.stat {
  background: var(--color-white);
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.stat:hover {
  transform: translateY(-4px);
}

.stat__number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-sea-dark);
  line-height: 1;
}

.stat__suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sea-dark);
}

.stat__label {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Sections */
.section {
  margin-bottom: 56px;
  background: var(--color-white);
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
  padding: 40px 28px;
  box-shadow: var(--shadow-md);
}

.section--alt {
  background: #f8fafc;
}

.section__header {
  text-align: center;
  margin-bottom: 36px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-sea-dark);
  margin-bottom: 8px;
}

.section__header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about__text p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about__text em {
  color: var(--color-text);
  font-style: normal;
  font-weight: 600;
}

.about__list {
  list-style: none;
  margin-top: 24px;
}

.about__list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about__list li:last-child {
  border-bottom: none;
}

.about__icon {
  color: var(--color-sea);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__list strong {
  display: block;
  font-size: 0.95rem;
}

.about__list span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.about__image {
  position: relative;
  height: 300px;
}

.about__photo {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: var(--shadow-md);
  animation: float-card 6s ease-in-out infinite;
}

.about__photo--1 {
  top: 0;
  left: 10%;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.about__photo--2 {
  bottom: 10%;
  right: 5%;
  background: linear-gradient(135deg, #d1fae5, #6ee7b7);
  animation-delay: 2s;
}

.about__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about__badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--color-sea-dark);
}

.about__badge span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

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

.step {
  text-align: center;
  padding: 8px;
}

.step__num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--color-sea), var(--color-mountain));
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-sea), var(--color-mountain));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  margin-bottom: 32px;
  padding-left: 24px;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--color-white);
  border: 3px solid var(--color-sea);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

.timeline__year {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-sea-dark);
  background: #e0f2fe;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.timeline__content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline__content p {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #dbe3ec;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial p {
  font-size: 0.925rem;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.55;
}

.testimonial footer strong {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
}

.testimonial footer span {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-style: normal;
}

/* CTA card */
#dotaznik.section {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  border-color: #bae6fd;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}

.cta-card h2 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.cta-card p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.cta-card__action {
  text-align: center;
}

.cta-card__note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.features {
  list-style: none;
}

.features li {
  padding: 8px 0;
  font-size: 0.95rem;
}

/* Cards (survey) */
.card {
  background: var(--color-white);
  border: 1px solid #dbe3ec;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  animation: fadeIn 0.4s ease;
}

.card[hidden] {
  display: none;
}

.card h1,
.card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.card__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-sea-dark);
  background: #e0f2fe;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.card__badge--success {
  color: var(--color-mountain-dark);
  background: #d1fae5;
}

.card__lead {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* Progress */
.progress {
  height: 6px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-sea), var(--color-mountain));
  border-radius: 999px;
  transition: width var(--transition);
  width: 14.28%;
}

.progress__label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

/* Questions */
.question {
  border: none;
  display: none;
}

.question--active {
  display: block;
  animation: slideIn 0.35s ease;
}

.question legend {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
  float: left;
  width: 100%;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  clear: both;
}

.options--compact .option__content {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.options--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.option {
  cursor: pointer;
}

.option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.option:hover .option__content {
  border-color: #bae6fd;
  background: #f0f9ff;
}

.option input:checked + .option__content {
  border-color: var(--color-sea);
  background: #e0f2fe;
  box-shadow: var(--shadow-sm);
}

.option input:focus-visible + .option__content {
  outline: 2px solid var(--color-sea);
  outline-offset: 2px;
}

.option__emoji {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.option__title {
  font-weight: 600;
  font-size: 1rem;
}

.option__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #f1f5f9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-sea), var(--color-sea-dark));
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45);
}

.btn--large {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--pulse {
  animation: pulse-green 2.5s ease-in-out infinite;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 2px solid #e2e8f0;
}

.btn--ghost:hover:not(:disabled) {
  border-color: #cbd5e1;
  color: var(--color-text);
}

.btn--ghost:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn--full {
  width: 100%;
  margin-top: 8px;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 10px 32px rgba(34, 197, 94, 0.5);
  animation: float-cta 3s ease-in-out infinite;
  white-space: nowrap;
  max-width: 220px;
  line-height: 1.25;
  text-align: center;
}

body.survey-mode .floating-cta {
  display: none;
}

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

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--color-white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-sea);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--color-error);
}

.form-group .error-msg {
  color: var(--color-error);
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--color-sea);
}

/* Success */
.card--success {
  text-align: center;
}

.success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-mountain), var(--color-mountain-dark));
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
}

/* Footer */
.footer {
  padding: 0 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  background: #0f172a;
  border-radius: var(--radius);
  padding: 28px 32px 20px;
  box-shadow: var(--shadow-lg);
}

.footer__brand strong {
  color: #f8fafc;
  font-size: 1.1rem;
}

.footer__brand p,
.footer__contact p {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-top: 6px;
  line-height: 1.5;
}

.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

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

@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes urgency-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}

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

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-600px); }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 20px rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 6px 32px rgba(34, 197, 94, 0.65); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(14, 165, 233, 0.55); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.2rem;
  }

  .hero__promo {
    font-size: 1.45rem;
    padding: 14px 16px;
  }

  .hero__text {
    max-width: none;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    height: 220px;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__aside {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

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

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

  .about__image {
    height: 240px;
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .card {
    padding: 24px 20px;
  }

  .card h1,
  .card h2 {
    font-size: 1.45rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .nav {
    flex-direction: column-reverse;
  }

  .nav .btn {
    width: 100%;
  }

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

  .section {
    padding: 28px 20px;
  }

  .floating-cta {
    right: 16px;
    bottom: 20px;
    top: auto;
    transform: none;
    padding: 14px 18px;
    font-size: 0.95rem;
    animation: none;
  }

  .hero__content {
    padding: 24px 20px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
