@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800&family=Karla:wght@400;500;600&display=swap');

/* ── Brand Tokens ─────────────────────────────────────── */
:root {
  --navy-900: #0F2A4A;
  --navy-800: #1B3D6B;
  --navy-600: #2E5C8A;
  --navy-400: #4A7FB5;
  --navy-200: #8FB4D8;
  --navy-50:  #D6E5F3;

  --green-900: #075E54;
  --green-800: #128C7E;
  --green-600: #25D366;
  --green-400: #6EE89A;
  --green-200: #B8F5CF;
  --green-50:  #E3F5EC;

  --gold-900: #6B3A08;
  --gold-600: #D4880A;
  --gold-400: #E8A832;
  --gold-200: #F3CC6E;
  --gold-50:  #FDF0D4;

  --neutral-900: #1E1E1C;
  --neutral-800: #3D3B37;
  --neutral-600: #6B6860;
  --neutral-400: #9E9B92;
  --neutral-200: #D4D1C9;
  --neutral-50:  #F5F2EC;

  --font-headline: 'Nunito', sans-serif;
  --font-body: 'Karla', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-900);
  background: var(--neutral-50);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-600) 100%);
  color: #fff;
  padding: 3rem 2rem 4rem;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Logo + H1 as one visual unit */
.hero-brand {
  margin-bottom: 1rem;
}

.nav-logo {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 0.6rem;
}

.hero-text h1 {
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0;
}

.hero-text h1 .h1-chatte {
  color: var(--green-400);
}

.hero-text h1 .h1-webseite {
  color: #fff;
}

.hero-text h1 .h1-dot {
  color: var(--green-400);
}

.hero-subtitle {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-400);
  margin-bottom: 0.75rem;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--navy-200);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-existing {
  font-size: 0.9rem;
  color: var(--navy-200);
  margin-top: 0.75rem;
}

.trust-badges .badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
  background: var(--gold-400);
  border: none;
  border-radius: 20px;
  padding: 0.45rem 0.9rem;
}

/* ── Info Tooltip ─────────────────────────────────────── */
.info-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  border: none;
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  margin-left: 0.3rem;
  line-height: 1;
  transition: background 0.2s;
}

.info-trigger:hover,
.info-trigger:focus {
  background: var(--navy-600);
}

.info-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-800);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  width: 220px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 10;
}

.info-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy-800);
}

.info-trigger:hover .info-popup,
.info-trigger:focus .info-popup {
  display: block;
}

/* ── Form Card ────────────────────────────────────────── */
.hero-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.hero-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.form-headline {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 1.25rem;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.field {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-family: var(--font-headline);
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: var(--neutral-800);
}

.domain-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.domain-input:focus-within {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.domain-input input {
  flex: 1;
  border: none;
  padding: 0.7rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  min-width: 0;
  background: #fff;
  color: var(--neutral-900);
}

.domain-suffix {
  padding: 0.7rem 0.75rem;
  background: var(--neutral-50);
  color: var(--neutral-600);
  font-size: 0.85rem;
  white-space: nowrap;
  border-left: 1px solid var(--neutral-200);
}

.phone-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--neutral-200);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.phone-input:focus-within {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.phone-prefix {
  padding: 0.7rem 0.75rem;
  background: var(--neutral-50);
  color: var(--neutral-600);
  font-size: 0.85rem;
  white-space: nowrap;
  border-right: 1px solid var(--neutral-200);
}

.phone-input input {
  flex: 1;
  border: none;
  padding: 0.7rem 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  min-width: 0;
  background: #fff;
  color: var(--neutral-900);
}

button[type="submit"] {
  width: 100%;
  padding: 0.85rem;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--green-600);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.1s;
}

button[type="submit"]:hover {
  background: var(--green-800);
}

button[type="submit"]:active {
  transform: scale(0.98);
}

button[type="submit"]:disabled {
  background: var(--neutral-400);
  cursor: not-allowed;
  transform: none;
}

.hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--neutral-400);
  margin-top: 0.5rem;
}

.result {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
}

.result.success {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--green-200) 100%);
  color: var(--green-900);
  border: 1px solid var(--green-600);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.2);
  font-weight: 600;
  animation: pop-in 0.4s ease-out;
}

.result.success a {
  color: var(--navy-800);
  font-weight: 700;
}

@keyframes pop-in {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.result.error {
  background: #fde8e8;
  color: #b91c1c;
}

.hidden {
  display: none;
}

/* ── WhatsApp primary CTA ─────────────────────────────── */
.wa-alternative {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* ── Form toggle + collapsible ───────────────────────── */
.show-form-toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--neutral-400);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.5rem 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.show-form-toggle:hover {
  color: var(--navy-600);
}

.form-collapsible {
  display: none;
  margin-top: 0.75rem;
}

.form-collapsible.open {
  display: block;
}

.form-divider {
  border: none;
  border-top: 1px solid var(--neutral-200);
  margin: 1rem 0 0.5rem;
}

.wa-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}

.wa-button:hover {
  background: #1da853;
  transform: translateY(-1px);
}

.wa-qr {
  width: 160px;
  height: 160px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.wa-hint {
  font-size: 0.8rem;
  color: #9eadca;
  margin: 0;
  text-align: center;
}

/* ── Main Content ─────────────────────────────────────── */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Steps / Demo ─────────────────────────────────────── */
.steps {
  padding: 1.5rem 0 3rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.steps h2 {
  display: table;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--gold-400);
  padding: 0.7rem 1.8rem;
  border-radius: 20px;
  margin: -3rem auto 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.step {
  text-align: center;
  transition: opacity 0.3s;
  opacity: 0.35;
  position: static;
  transform: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.step.active {
  opacity: 1;
}

.step.past,
.step.neighbor,
.step.hidden-step {
  opacity: 0.35;
  transform: none;
}

.step-number {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--navy-900);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 0.6rem;
}

.step h3 {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.3rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--neutral-900);
  line-height: 1.5;
}

/* Demo: Phone + Browser */
.demo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.demo-phone {
  width: 300px;
  border: 2px solid var(--neutral-200);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.demo-phone-header {
  background: var(--green-600);
  color: #fff;
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem 0.8rem;
}

.demo-chat {
  padding: 0.75rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 210px;
  background: #e5ddd5;
  overflow: hidden;
}

.chat-bubble {
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 85%;
  transition: opacity 0.4s;
}

.scene {
  display: none;
  opacity: 0;
}

.scene.visible {
  display: block;
  opacity: 1;
}

.chat-incoming {
  background: #fff;
  align-self: flex-start;
}

.chat-outgoing {
  background: #dcf8c6;
  align-self: flex-end;
}

.demo-arrow {
  color: var(--navy-800);
  flex-shrink: 0;
}

.demo-arrow svg {
  width: 40px;
  height: 40px;
  stroke: var(--navy-800);
  paint-order: stroke;
  stroke-width: 3;
}

.demo-browser {
  width: 340px;
  border: 2px solid var(--neutral-200);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.demo-browser-bar {
  background: var(--neutral-50);
  padding: 0.5rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--neutral-200);
}

.demo-dots {
  display: flex;
  gap: 4px;
}

.demo-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
}

.demo-dots i:first-child { background: var(--gold-400); }
.demo-dots i:nth-child(2) { background: var(--navy-200); }
.demo-dots i:nth-child(3) { background: var(--navy-200); }

.demo-url {
  font-size: 0.75rem;
  color: var(--neutral-600);
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-site {
  padding: 1rem;
  height: 180px;
  overflow: hidden;
}

.demo-site-header {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}

.demo-site-text {
  font-size: 0.8rem;
  color: var(--neutral-900);
  margin-bottom: 0.6rem;
}

.demo-site-block {
  height: 10px;
  background: var(--neutral-200);
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.demo-site-block.short {
  width: 60%;
}

.demo-site-block.faint {
  background: var(--navy-50);
  width: 40%;
}

.demo-site-final {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  padding: 0.75rem;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  animation: site-appear 0.4s ease-out;
}

@keyframes site-appear {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.demo-site-final .demo-site-header {
  color: var(--gold-400);
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(232, 168, 50, 0.3);
}

.demo-site-final .demo-site-text {
  color: var(--navy-200);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.demo-site-final .demo-site-block {
  background: rgba(255,255,255,0.12);
  height: 12px;
}

.demo-site-final .demo-site-block.short {
  background: linear-gradient(90deg, rgba(232, 168, 50, 0.4) 0%, rgba(232, 168, 50, 0.15) 100%);
}

/* ── Benefits ─────────────────────────────────────────── */
.benefits {
  padding: 3rem 0;
  border-top: 1px solid var(--neutral-200);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-50);
  border-radius: 12px;
  color: var(--navy-800);
}

.benefit h3 {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.15rem;
}

.benefit p {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.5;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
  padding: 3rem 0;
  border-top: 1px solid var(--neutral-200);
}

.faq h2 {
  text-align: center;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 1.5rem;
}

.faq details {
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  background: #fff;
}

.faq summary {
  padding: 0.85rem 1rem;
  font-family: var(--font-headline);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-900);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--gold-400);
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 0.5rem;
  transition: transform 0.3s;
}

.faq details[open] summary::after {
  content: "\2212";
}

.faq details p {
  padding: 0 1rem 0.85rem;
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

.faq details ul {
  margin: 0;
  padding: 0 1rem 0.85rem 2.25rem;
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

.faq details li {
  margin-bottom: 0.35rem;
}

.faq details a {
  color: var(--green-800);
}

.faq details a:hover {
  color: var(--green-600);
}

/* ── Final CTA ────────────────────────────────────────── */
.final-cta {
  text-align: center;
  background: var(--navy-800);
  padding: 3.5rem 2rem;
  color: #fff;
}

.final-cta h2 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.final-cta p {
  color: var(--navy-200);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--green-600);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.cta-button:hover {
  background: var(--green-800);
}

.cta-button:active {
  transform: scale(0.98);
}

/* ── Footer ───────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  background: var(--navy-900);
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.75rem;
}

footer a:hover {
  color: var(--green-400);
}

/* ── Sub-pages (Impressum, Datenschutz) ───────────────── */
.page-header {
  background: var(--navy-800);
  padding: 1.5rem 2rem;
}

.page-header .page-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-nav a {
  display: inline-block;
  text-decoration: none;
}

.page-logo {
  height: 48px;
  width: auto;
  display: block;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 2rem 3rem;
  flex: 1;
  width: 100%;
}

.page-title {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 1.5rem;
  text-align: left;
}

.page-body {
  text-align: left;
}

.page-body h3 {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.page-body p {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.page-body ul {
  margin: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.65;
}

.page-body li {
  margin-bottom: 0.3rem;
}

.page-body a {
  color: var(--green-800);
  text-decoration: none;
}

.page-body a:hover {
  color: var(--green-600);
  text-decoration: underline;
}

/* ── Mobile ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.25rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-description {
    max-width: none;
  }

  .trust-badges {
    justify-content: center;
  }

  .hero-form-wrapper {
    justify-content: center;
  }

  .hero-form-card {
    max-width: 100%;
  }

  .hero-form-card label {
    text-align: left;
  }

  .steps {
    padding: 5rem 0;
  }

  .benefits {
    padding: 5rem 0;
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 5rem 0;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .demo {
    flex-direction: column;
    gap: 0.3rem;
  }

  .demo-phone,
  .demo-browser {
    width: 100%;
    max-width: 340px;
  }

  .demo-arrow {
    transform: rotate(90deg);
    margin: 1rem 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    position: relative;
    height: 100px;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }

  .step {
    grid-row: 1;
    grid-column: 1;
    position: absolute;
    top: 0;
    left: 50%;
    width: 60%;
    height: 100%;
    margin-left: -30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(90%) scale(0.8);
    transition: opacity 0.4s, transform 0.4s;
    pointer-events: none;
  }

  .step.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
  }

  .step.neighbor {
    pointer-events: auto;
    cursor: pointer;
  }

  .step.neighbor.past {
    opacity: 0.3;
    transform: translateX(-90%) scale(0.8);
  }

  .step.neighbor:not(.past) {
    opacity: 0.3;
    transform: translateX(90%) scale(0.8);
  }

  .step.hidden-step {
    opacity: 0;
  }

  .final-cta {
    padding: 4rem 1.5rem;
  }

  .final-cta h2 {
    font-size: 1.3rem;
  }
}
