/* ============================================================
   meinebio.site – Design System
   Farben: #F2D000 (yellow), #111111 (dark), #F7F7F5 (bg)
   Font: Plus Jakarta Sans
   ============================================================ */

/* --- Reset & Base ----------------------------------------------- */

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

:root {
  --yellow:      #F2D000;
  --yellow-dark: #C8A900;
  --dark:        #111111;
  --dark-mid:    #1E1E1E;
  --bg:          #F7F7F5;
  --gray-light:  #EDEDED;
  --gray-mid:    #6B6B6B;
  --gray-border: #D8D8D8;
  --white:       #FFFFFF;

  --radius-sm:   10px;
  --radius-md:   18px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);

  --font: 'Plus Jakarta Sans', system-ui, sans-serif;

  --container: 1160px;
  --gap: clamp(24px, 5vw, 64px);
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

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

ul { list-style: none; }

/* --- Utilities ---------------------------------------------------- */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.section-sub {
  margin-top: 16px;
  font-size: 1.0625rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* --- Badges ------------------------------------------------------- */

.badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.badge--accent {
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  padding: 3px 8px;
  vertical-align: middle;
}

/* --- Buttons ------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  padding: 13px 24px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn--primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
}

.btn--secondary {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-border);
}
.btn--secondary:hover {
  border-color: var(--dark);
}

.btn--sm {
  font-size: 0.875rem;
  padding: 9px 18px;
  border-radius: 12px;
}

.btn--lg {
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 20px;
}

.btn--full { width: 100%; }

/* --- NAV ---------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 247, 245, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dark);
}
.nav__logo span {
  color: var(--yellow-dark);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-mid);
  transition: color 0.15s;
}
.nav__login:hover { color: var(--dark); }

/* --- HERO --------------------------------------------------------- */

.hero {
  padding: clamp(36px, 5vw, 72px) 0 clamp(48px, 8vw, 96px);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}

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

.hero__headline {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero__headline em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.hero__headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 3px;
}

.hero__sub {
  font-size: 1.0625rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 460px;
}

.slug-checker {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slug-checker__field {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s;
}
.slug-checker__field:focus-within {
  border-color: var(--dark);
}

.slug-checker__prefix {
  padding: 14px 0 14px 18px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-mid);
  white-space: nowrap;
}

.slug-checker__input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  padding: 14px 14px 14px 4px;
  background: transparent;
  min-width: 0;
}

.slug-checker__result {
  min-height: 22px;
  font-size: 0.875rem;
  font-weight: 600;
}
.slug-checker__result.available  { color: #1A7F4B; }
.slug-checker__result.taken      { color: #C0392B; }
.slug-checker__result.invalid    { color: #C0392B; }
.slug-checker__result.checking   { color: var(--gray-mid); }

.slug-result__cta {
  display: inline-block;
  margin-left: 10px;
  background: #F2D000;
  color: #111;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 4px 12px;
  border-radius: 6px;
  text-decoration: none;
  vertical-align: middle;
}

.slug-result__cta:hover {
  background: #e0c000;
}

.hero__hint {
  font-size: 0.8125rem;
  color: var(--gray-mid);
}

/* --- PHONE MOCKUP ------------------------------------------------- */

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.phone-frame {
  width: 264px;
  background: #1A1A1A;
  border-radius: 48px;
  padding: 10px;
  box-shadow:
    0 32px 64px rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.phone-frame__notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 7px;
  background: #2a2a2a;
  border-radius: 4px;
  z-index: 10;
}

.phone-frame__screen {
  background: var(--bg);
  border-radius: 40px;
  overflow: hidden;
  height: 480px;  /* Feste Höhe — Inhalt scrollt automatisch */
  position: relative;
  margin-top: 10px; /* Platz für Notch */
}

/* Auto-Scroll-Animation */
.demo-bio {
  animation: phonescroll 9s ease-in-out infinite;
  will-change: transform;
  position: relative; /* Anker für Contact-Sheet */
}

@keyframes phonescroll {
  0%, 15%   { transform: translateY(0); }
  75%, 90%  { transform: translateY(-320px); }
  100%      { transform: translateY(0); }
}

/* Subtile Scroll-Maske oben/unten */
.phone-frame__screen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
  z-index: 2;
}

/* Cover-Bereich */
.demo-bio__cover {
  height: 88px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.demo-bio__cover-shape {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.18;
}

/* Avatar — überlappt den Cover */
.demo-bio__avatar-ring {
  display: flex;
  justify-content: center;
  margin-top: -36px;
  position: relative;
  z-index: 1;
}

.demo-bio__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow) 0%, #E8A000 100%);
  border: 3px solid var(--bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* Body */
.demo-bio__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 18px 24px;
  gap: 0;
}

.demo-bio__name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 5px;
}

.demo-bio__role-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

/* Tagline direkt unter dem Badge */
.demo-bio__tagline {
  font-size: 0.72rem;
  color: var(--dark);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 14px;
  font-weight: 500;
}

/* Textsektion (Über mich, Was ich anbiete, ...) */
.demo-bio__section {
  width: 100%;
  margin-bottom: 12px;
}

.demo-bio__section-title {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 6px;
}

.demo-bio__section-text {
  font-size: 0.7rem;
  color: var(--gray-mid);
  line-height: 1.65;
}

.demo-bio__highlights {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.demo-bio__highlight {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark);
}

.demo-bio__highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

/* Social Icons */
.demo-bio__socials {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
}

.demo-bio__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--gray-light);
  color: var(--dark);
  transition: background 0.15s;
}
.demo-bio__social:hover { background: var(--gray-border); }
.demo-bio__social svg {
  width: 15px;
  height: 15px;
}

.demo-bio__divider {
  width: 100%;
  height: 1px;
  background: var(--gray-light);
  margin-bottom: 12px;
}

/* Link-Buttons */
.demo-bio__links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.demo-bio__link {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.demo-bio__link:hover {
  border-color: var(--gray-border);
  box-shadow: var(--shadow-sm);
}

.demo-bio__link--accent {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--dark);
}
.demo-bio__link--accent:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  box-shadow: none;
}

.demo-bio__link--contact {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  cursor: pointer;
}
.demo-bio__link--contact:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  box-shadow: none;
}

/* --- Kontakt-Sheet ------------------------------------------------ */

.demo-contact-sheet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.demo-contact-sheet.open {
  transform: translateY(0);
}

.demo-contact-sheet__inner {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-radius: 20px 20px 0 0;
  padding: 16px 16px 20px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.1);
}

.demo-contact-sheet__label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-align: center;
}

.demo-contact-sheet__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.demo-contact-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 12px;
  transition: background 0.15s;
  text-decoration: none;
}
.demo-contact-option:hover { background: var(--gray-light); }

.demo-contact-option__icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-contact-option__icon--mail {
  background: #EEF2FF;
  color: #4F46E5;
}

.demo-contact-option__icon--wa {
  background: #DCFCE7;
  color: #16A34A;
}

.demo-contact-option__icon svg {
  width: 16px;
  height: 16px;
}

.demo-contact-option__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.demo-contact-option__text strong {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--dark);
}
.demo-contact-option__text small {
  font-size: 0.62rem;
  color: var(--gray-mid);
}

.demo-contact-sheet__close {
  width: 100%;
  background: none;
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 8px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-mid);
  cursor: pointer;
  transition: border-color 0.15s;
}
.demo-contact-sheet__close:hover { border-color: var(--gray-border); }

/* Legal */
.demo-bio__legal {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.6rem;
  color: var(--gray-mid);
}
.demo-bio__legal a { color: var(--gray-mid); }
.demo-bio__legal a:hover { color: var(--dark); }

/* URL-Label unter dem Phone */
.hero__visual-url {
  font-size: 0.8125rem;
  color: var(--gray-mid);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  letter-spacing: -0.01em;
}
.hero__visual-url strong { color: var(--dark); }

/* --- TRUST BAR ---------------------------------------------------- */

.trust-bar {
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  background: var(--white);
  padding: 24px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.trust-bar__item strong {
  font-size: 0.875rem;
  font-weight: 700;
}
.trust-bar__item span {
  font-size: 0.8125rem;
  color: var(--gray-mid);
}

.trust-bar__divider {
  width: 1px;
  height: 36px;
  background: var(--gray-light);
}

/* --- FEATURES ----------------------------------------------------- */

.features {
  padding: clamp(64px, 10vw, 112px) 0;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-border);
}

.feature-card__icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--dark);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* --- HOW IT WORKS ------------------------------------------------- */

.how-it-works {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--dark);
}

.how-it-works .section-title { color: var(--white); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 8px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}

.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step__content h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.step__content p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.step__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin-top: 26px;
}

/* --- PRICING ------------------------------------------------------ */

.pricing {
  padding: clamp(64px, 10vw, 112px) 0;
}

.pricing__toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing__toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 4px;
}

.pricing__tab {
  background: transparent;
  border: none;
  border-radius: var(--radius-pill);
  padding: 9px 20px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-mid);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing__tab.active {
  background: var(--dark);
  color: var(--white);
}

.pricing__card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow-md);
}

.pricing__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid var(--gray-light);
  padding-right: clamp(24px, 5vw, 48px);
}

.pricing__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing__amount {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing__period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-mid);
}

.pricing__note {
  font-size: 0.8125rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

.pricing__sub-note {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

.pricing-slug-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.pricing-slug-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s;
  margin-bottom: 14px;
}

.pricing-slug-wrap:focus-within {
  border-color: var(--dark);
}

.pricing-slug-prefix {
  padding: 11px 0 11px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-mid);
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-slug-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  padding: 11px 12px 11px 3px;
  background: transparent;
  min-width: 0;
}

.pricing-email-input {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-md);
  outline: none;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  padding: 11px 14px;
  background: var(--white);
  margin-bottom: 14px;
  transition: border-color 0.15s;
}

.pricing-email-input:focus {
  border-color: var(--dark);
}

.pricing-email-input::placeholder {
  color: var(--gray-mid);
  font-weight: 400;
}

.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.4;
}

.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--yellow-dark);
}

/* --- FAQ ---------------------------------------------------------- */

.faq {
  padding: clamp(64px, 10vw, 112px) 0;
  background: var(--white);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--gray-light);
}
.faq__item:first-child { border-top: 1px solid var(--gray-light); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.faq__question:hover { color: var(--yellow-dark); }

.faq__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--gray-mid);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* --- CTA FINAL ---------------------------------------------------- */

.cta-final {
  background: var(--yellow);
  padding: clamp(56px, 8vw, 96px) 0;
}

.cta-final__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.cta-final h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.cta-final p {
  font-size: 1.0625rem;
  color: var(--dark-mid);
  opacity: 0.7;
}

.cta-final .btn--primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.cta-final .btn--primary:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

/* --- FOOTER ------------------------------------------------------- */

.footer {
  background: var(--dark);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer .nav__logo span { color: var(--yellow); }
.footer .nav__logo { color: var(--white); }

.footer__nav {
  display: flex;
  gap: 24px;
}
.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer__nav a:hover { color: var(--white); }

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  width: 100%;
}

/* --- RESPONSIVE --------------------------------------------------- */

@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    order: -1;
  }
  .phone-frame {
    width: 240px;
  }
  .phone-frame__screen {
    height: 420px;
  }

  .steps {
    flex-direction: column;
    align-items: flex-start;
    max-width: 380px;
    margin: 0 auto;
  }
  .step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 0;
  }
  .step__number {
    margin-bottom: 0;
    margin-right: 16px;
    margin-top: 2px;
  }
  .step__connector {
    width: 2px;
    height: 32px;
    margin: 0 25px;
  }

  .pricing__card {
    grid-template-columns: 1fr;
  }
  .pricing__left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 28px;
  }

  .trust-bar__divider { display: none; }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__copy { margin-top: 4px; }
}

@media (max-width: 480px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
  .nav__login { display: none; }
  .hero__headline { font-size: clamp(2rem, 8vw, 2.5rem); }
}

@media (max-width: 640px) {
  .legal-compare-grid {
    grid-template-columns: 1fr !important;
  }
}
