/* ============================================================
   EU Recover – Landing Page
   Palette: deep navy + gold accent
   ============================================================ */

:root {
  --navy-900: #060d1a;
  --navy-800: #0a1628;
  --navy-700: #10203a;
  --navy-600: #16294a;
  --gold: #c9a227;
  --gold-light: #e4c45a;
  --cream: #f7f4ec;
  --white: #ffffff;
  --gray-100: #eef1f5;
  --gray-400: #9aa5b5;
  --gray-600: #5a6475;
  --text: #1c2433;
  --text-light: #5a6478;
  --radius: 14px;
  --shadow: 0 20px 50px rgba(6, 13, 26, 0.12);
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.container--narrow { width: min(820px, 92%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 1.9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 162, 39, 0.45); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }

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

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 26, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
}

.logo__mark { width: 34px; height: 34px; flex-shrink: 0; }

.logo__text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--gold-light); }

.nav__cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201, 162, 39, 0.4); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(201, 162, 39, 0.16), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(46, 86, 160, 0.25), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.4rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 1.3rem;
}
.hero__title span { color: var(--gold-light); }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.6rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  list-style: none;
}
.hero__trust strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-light);
}
.hero__trust span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.65); }

/* ---------- Quick form card ---------- */
.hero__card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.quickform { display: grid; gap: 0.95rem; }
.quickform__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
}
.quickform__hint { font-size: 0.88rem; color: var(--text-light); margin-top: -0.5rem; }
.quickform__legal { font-size: 0.75rem; color: var(--gray-400); }
.quickform__legal a { text-decoration: underline; }

label span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text);
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #d9dee7;
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
input.invalid, select.invalid, textarea.invalid { border-color: #d0453e; }

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--cream);
  border-bottom: 1px solid #e7e2d4;
}
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.4rem;
  padding-block: 1.1rem;
  font-size: 0.88rem;
  color: var(--text-light);
}
.trustbar__item { font-weight: 600; color: var(--navy-700); }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--gray-100); }
.section--dark {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
}

.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__lead {
  max-width: 44rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}
.section--dark .section__lead { color: rgba(255, 255, 255, 0.75); }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid #e6e9ef;
  border-radius: var(--radius);
  padding: 1.9rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, 0.5);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: var(--gold-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--navy-800);
}
.card p { font-size: 0.94rem; color: var(--text-light); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  list-style: none;
  counter-reset: step;
  margin-top: 2.5rem;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  transition: transform 0.25s, border-color 0.25s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.55); }

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--white); }
.step p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.68); }

/* ---------- Why us ---------- */
.why {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: start;
}

.checklist {
  list-style: none;
  margin: 1.6rem 0 2.2rem;
  display: grid;
  gap: 1rem;
}
.checklist li {
  position: relative;
  padding-left: 2.1rem;
  color: var(--text-light);
  font-size: 0.97rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 800;
}
.checklist strong { color: var(--text); }

.why__quotes { display: grid; gap: 1.2rem; }

.quote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.7rem;
}
.quote blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.quote figcaption { font-size: 0.86rem; font-weight: 600; color: var(--text-light); }

/* ---------- FAQ accordion ---------- */
.accordion { margin-top: 2.5rem; display: grid; gap: 0.8rem; }

.accordion__item {
  background: var(--white);
  border: 1px solid #e2e6ec;
  border-radius: 12px;
  padding: 1.15rem 1.4rem;
  transition: border-color 0.2s;
}
.accordion__item[open] { border-color: rgba(201, 162, 39, 0.6); }

.accordion__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-800);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.accordion__item summary::-webkit-details-marker { display: none; }
.accordion__item summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.25s;
}
.accordion__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.accordion__item p { margin-top: 0.8rem; color: var(--text-light); font-size: 0.95rem; }

/* ---------- CTA / Kontakt ---------- */
.section--cta {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
}

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.cta__text > p { color: rgba(255, 255, 255, 0.75); margin-bottom: 2rem; max-width: 30rem; }

.cta__contacts { list-style: none; display: grid; gap: 1.1rem; }
.cta__contacts span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.15rem;
}
.cta__contacts a { font-size: 1.1rem; font-weight: 600; }
.cta__contacts a:hover { color: var(--gold-light); }

.contactform {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.contactform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contactform__status { font-size: 0.92rem; font-weight: 600; min-height: 1.2em; }
.contactform__status.ok { color: #1e7d46; }
.contactform__status.err { color: #d0453e; }

/* Honeypot (anti-spam) – must stay invisible */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 1.6rem;
  font-size: 0.92rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p { margin-top: 1rem; max-width: 26rem; }
.logo--footer .logo__text { color: var(--white); }

.footer__nav { display: grid; gap: 0.6rem; align-content: start; }
.footer__nav strong { color: var(--white); margin-bottom: 0.4rem; }
.footer__nav a:hover { color: var(--gold-light); }

.footer__bottom { padding-top: 1.6rem; }
.footer__disclaimer { margin-top: 0.4rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

/* ---------- Modals ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1.5rem; }
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 13, 26, 0.7);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2.4rem;
  max-width: 620px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.modal__dialog h2 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  color: var(--navy-800);
}
.modal__dialog p { margin-bottom: 0.9rem; font-size: 0.94rem; color: var(--text-light); }

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-light);
}
.modal__close:hover { color: var(--text); }

body.modal-open { overflow: hidden; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__inner,
  .why,
  .cta { grid-template-columns: 1fr; gap: 3rem; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .burger { display: flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-800);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 4%;
    display: none;
  }
  .nav.open { display: flex; }
  .nav__link { padding: 0.85rem 0.4rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .nav__cta { margin: 0.8rem 0; text-align: center; }

  .grid--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contactform__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 3.5rem 0; }
  .section { padding: 4rem 0; }
  .hero__trust { gap: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
