/* ==========================================================================
   Return Guard – Landing Page Styles
   ========================================================================== */

:root {
  /* Colors */
  --navy-900: #101d36;
  --navy-800: #14233f;
  --navy-700: #1e3a5f;
  --blue-600: #2f6fed;
  --blue-500: #4d84f3;
  --blue-50:  #eaf1ff;
  --slate-900: #1a2332;
  --slate-700: #3a4658;
  --slate-600: #5b6b82;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f4f9;
  --slate-50:  #f8faff;
  --white: #ffffff;
  --green: #16a34a;
  --orange: #f59e0b;
  --red: #dc2626;

  /* Type */
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(16, 29, 54, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 29, 54, 0.08);
  --shadow-lg: 0 24px 60px rgba(16, 29, 54, 0.16);
  --section-pad: 96px;
}

/* ---------------------------------------------------------------------- */
/* Reset & base                                                            */
/* ---------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--tight {
  padding: 64px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 0 56px;
}

.section-head--center {
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 14px 0 16px;
}

.section-head p {
  color: var(--slate-600);
  font-size: 17px;
}

/* ---------------------------------------------------------------------- */
/* Pill / eyebrow – signature element                                      */
/* ---------------------------------------------------------------------- */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-50);
  color: var(--blue-600);
  border: 1px solid rgba(47, 111, 237, 0.18);
}

.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-600);
  flex-shrink: 0;
}

.pill--on-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #cfe0ff;
  border-color: rgba(255, 255, 255, 0.16);
}

.pill--on-dark::before {
  background: #6fa1ff;
}

.pill--green::before { background: var(--green); }
.pill--orange::before { background: var(--orange); }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(47, 111, 237, 0.28);
}

.btn--primary:hover {
  background: #2a63d6;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(47, 111, 237, 0.32);
}

.btn--secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--slate-200);
}

.btn--secondary:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  transform: translateY(-1px);
}

.btn--ghost-on-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--ghost-on-dark:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.btn--large {
  padding: 16px 34px;
  font-size: 16px;
}

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

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-900);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--slate-400);
  text-transform: uppercase;
  margin-top: 1px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--blue-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--navy-900);
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.hero {
  padding: 76px 0 var(--section-pad);
  background:
    radial-gradient(ellipse 900px 480px at 85% -10%, rgba(47, 111, 237, 0.10), transparent 60%),
    var(--white);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 52px);
  margin: 18px 0 20px;
}

.hero-content p {
  font-size: 18px;
  color: var(--slate-600);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 13.5px;
  color: var(--slate-600);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust svg {
  width: 15px;
  height: 15px;
  color: var(--blue-600);
  flex-shrink: 0;
}

.hero-price {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  box-shadow: 0 4px 20px rgba(16, 29, 54, 0.18);
}

.hero-price .price-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.hero-price .price-value {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------------------------------------------------------------------- */
/* Problem section                                                         */
/* ---------------------------------------------------------------------- */

.problem {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.problem .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-before h3,
.problem-after h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  color: var(--slate-400);
  margin-bottom: 18px;
  font-weight: 500;
}

.problem-before ul,
.problem-after ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-before li,
.problem-after li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--slate-700);
}

.problem-before li svg,
.problem-after li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-before li svg { color: var(--slate-400); }
.problem-after li svg { color: var(--green); }

.problem-after h3 { color: var(--blue-600); }

.problem-copy {
  grid-column: 1 / -1;
  max-width: 760px;
}

.problem-copy h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 14px;
}

.problem-copy p {
  color: var(--slate-600);
  font-size: 17px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

/* ---------------------------------------------------------------------- */
/* Feature grid                                                            */
/* ---------------------------------------------------------------------- */

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.feature-card:hover {
  border-color: var(--blue-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--slate-600);
}

/* ---------------------------------------------------------------------- */
/* Screenshot sections                                                     */
/* ---------------------------------------------------------------------- */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.showcase + .showcase {
  margin-top: var(--section-pad);
}

.showcase.is-reversed .showcase-visual {
  order: 2;
}

.showcase.is-reversed .showcase-copy {
  order: 1;
}

.showcase-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-md);
}

.showcase-copy .pill {
  margin-bottom: 18px;
}

.showcase-copy h3 {
  font-size: clamp(24px, 3.4vw, 30px);
  margin-bottom: 14px;
}

.showcase-copy p {
  color: var(--slate-600);
  font-size: 16px;
  margin-bottom: 20px;
}

.showcase-copy ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-copy li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--slate-700);
}

.showcase-copy li svg {
  width: 17px;
  height: 17px;
  color: var(--blue-600);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------------------------------------------------------------------- */
/* Privacy / trust section                                                 */
/* ---------------------------------------------------------------------- */

.trust {
  background: var(--navy-900);
  color: var(--white);
  background-image:
    radial-gradient(ellipse 700px 400px at 90% 0%, rgba(47, 111, 237, 0.22), transparent 60%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(47, 111, 237, 0.12), transparent 60%);
}

.trust .section-head h2,
.trust .section-head p {
  color: var(--white);
}

.trust .section-head p {
  color: #b9c4dc;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: #6fa1ff;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 4px;
}

.trust-item p {
  color: #b9c4dc;
  font-size: 13.5px;
}

/* ---------------------------------------------------------------------- */
/* Pricing                                                                 */
/* ---------------------------------------------------------------------- */

.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
  text-align: center;
}

.pricing-card .pill {
  margin-bottom: 20px;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.pricing-amount {
  font-family: var(--font-mono);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 18px 0 6px;
}

.pricing-amount .currency {
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-900);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-amount .value {
  font-size: 64px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}

.pricing-amount .cents {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-900);
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-card .pricing-note {
  color: var(--slate-600);
  font-size: 14px;
  margin-bottom: 28px;
}

.pricing-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.pricing-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--slate-700);
}

.pricing-list li svg {
  width: 17px;
  height: 17px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-footnote {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--slate-400);
}

/* ---------------------------------------------------------------------- */
/* SmartScreen notice                                                      */
/* ---------------------------------------------------------------------- */

.notice {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 28px 30px;
}

.notice-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-icon svg {
  width: 20px;
  height: 20px;
}

.notice h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.notice p {
  font-size: 14.5px;
  color: var(--slate-600);
}

.notice p + p {
  margin-top: 8px;
}

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

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy-900);
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--slate-400);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--slate-600);
  font-size: 14.5px;
}

/* ---------------------------------------------------------------------- */
/* Final CTA                                                               */
/* ---------------------------------------------------------------------- */

.final-cta {
  background: var(--navy-900);
  background-image:
    radial-gradient(ellipse 800px 420px at 50% 0%, rgba(47, 111, 237, 0.22), transparent 65%);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(28px, 4.5vw, 42px);
  margin-bottom: 16px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.final-cta-actions p {
  color: #b9c4dc;
  font-size: 13.5px;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-900);
  color: #b9c4dc;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 40px;
}

.footer-brand .brand {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: #8fa0c2;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  font-weight: 500;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 14px;
  color: #b9c4dc;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #8fa0c2;
}

/* ---------------------------------------------------------------------- */
/* Legal pages                                                             */
/* ---------------------------------------------------------------------- */

.legal-hero {
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--slate-200);
}

.legal-hero h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 10px;
}

.legal-hero p {
  color: var(--slate-600);
  font-size: 15px;
}

.legal-content {
  max-width: 760px;
  padding: 56px 24px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 21px;
  margin: 36px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--slate-700);
  font-size: 15px;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 12px;
}

.legal-content ul li {
  margin-bottom: 6px;
}

.todo {
  display: inline-block;
  background: #fff7e6;
  border: 1px solid #f5d68f;
  color: #92660b;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 5px;
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */

@media (max-width: 980px) {
  :root {
    --section-pad: 72px;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero .container,
  .problem .container,
  .problem-grid,
  .showcase,
  .footer-grid,
  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .showcase.is-reversed .showcase-visual,
  .showcase.is-reversed .showcase-copy {
    order: 0;
  }

  .showcase + .showcase {
    margin-top: 64px;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: var(--section-pad) 0;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Widerrufsbutton (§ 312k BGB ab 19.06.2026) */
.withdrawal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #b9c4dc !important;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  padding: 4px 10px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.withdrawal-btn:hover {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.4);
}

.hero-visual img.is-zoomable,
.showcase-visual img.is-zoomable {
  cursor: zoom-in;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.hero-visual img.is-zoomable:hover,
.showcase-visual img.is-zoomable:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.hero-visual img.is-zoomable:focus-visible,
.showcase-visual img.is-zoomable:focus-visible {
  outline: 2px solid var(--blue-600);
  outline-offset: 3px;
}

.zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--slate-400);
  margin-top: 10px;
}

.zoom-hint svg {
  width: 14px;
  height: 14px;
}

/* ---------------------------------------------------------------------- */
/* Lightbox                                                                */
/* ---------------------------------------------------------------------- */

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(16, 29, 54, 0.85);
  backdrop-filter: blur(4px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

/* ---------------------------------------------------------------------- */
/* Trial steps section                                                    */
/* ---------------------------------------------------------------------- */

.trial-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 48px 0 40px;
}

.trial-step {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 22px 18px;
}

.trial-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 14px;
}

.trial-step p {
  font-size: 14px;
  color: var(--slate-700);
}

.trial-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.trial-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--slate-600);
}

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

@media (max-width: 640px) {
  .trial-steps {
    grid-template-columns: 1fr;
  }

  .trial-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trial-actions .btn {
    width: 100%;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}
