:root {
  --site-navy: #071426;
  --site-navy-2: #0b1f3a;
  --site-blue: #2563eb;
  --site-blue-dark: #1d4ed8;
  --site-cyan: #38bdf8;
  --site-text: #172033;
  --site-muted: #667085;
  --site-border: #e5e7eb;
  --site-bg: #ffffff;
  --site-soft: #f6f8fb;
  --site-soft-2: #eef4ff;
  --site-radius: 18px;
  --site-radius-lg: 28px;
  --site-shadow: 0 18px 50px rgba(7, 20, 38, 0.12);
  --site-shadow-soft: 0 10px 30px rgba(7, 20, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--site-text);
  background: var(--site-bg);
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--site-blue);
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--site-navy);
}

.section-intro {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--site-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: var(--site-blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  background: var(--site-blue-dark);
}

.btn-secondary {
  color: var(--site-navy);
  background: #ffffff;
  border: 1px solid var(--site-border);
}

.btn-secondary:hover {
  box-shadow: var(--site-shadow-soft);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.site-disclosure {
  background: var(--site-navy);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

.site-disclosure__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-disclosure__inner span:first-child {
  font-weight: 800;
  color: #ffffff;
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* .site-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--site-blue), var(--site-navy-2));
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.22);
} */
.site-logo__image {
  width: 100%;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  border-radius: 12px;
}
.site-logo__text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.site-logo__text strong {
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--site-navy);
}

.site-logo__text small {
  font-size: 12px;
  color: var(--site-muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #344054;
}

.site-nav a {
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--site-blue);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff !important;
  background: var(--site-blue);
  box-shadow: 0 10px 26px rgba(37, 99, 235, 0.26);
}

.site-nav__cta:hover {
  background: var(--site-blue-dark);
  color: #ffffff !important;
}

.site-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--site-border);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  padding: 10px;
}

.site-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--site-navy);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.22), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(56, 189, 248, 0.18), transparent 30%),
    linear-gradient(135deg, #071426 0%, #0b1f3a 58%, #0f2d55 100%);
  color: #ffffff;
}

.hero__inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 54px;
  padding: 74px 0;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
}

.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: #93c5fd;
}

.hero__lead {
  max-width: 660px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero__note {
  max-width: 660px;
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.hero__panel {
  position: relative;
  z-index: 2;
  padding: 28px;
  border-radius: var(--site-radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.hero-card {
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  color: var(--site-text);
  box-shadow: var(--site-shadow);
}

.hero-card + .hero-card {
  margin-top: 14px;
}

.hero-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.hero-card h2,
.hero-card h3 {
  margin: 0;
  color: var(--site-navy);
  letter-spacing: -0.025em;
}

.hero-card h2 {
  font-size: 23px;
}

.hero-card h3 {
  font-size: 18px;
}

.hero-card p {
  margin: 12px 0 0;
  color: var(--site-muted);
  line-height: 1.65;
  font-size: 14px;
}

.hero-card__tag {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--site-soft-2);
  color: var(--site-blue);
  font-size: 12px;
  font-weight: 800;
}

.hero-card__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-card__item {
  display: flex;
  gap: 10px;
  color: #344054;
  font-size: 14px;
  line-height: 1.55;
}

.hero-card__item::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--site-blue);
}

/* Intro */

.intro {
  padding: 86px 0 34px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.info-card {
  padding: 26px;
  border-radius: var(--site-radius);
  background: var(--site-soft);
  border: 1px solid var(--site-border);
}

.info-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--site-blue);
  font-weight: 900;
  box-shadow: var(--site-shadow-soft);
}

.info-card h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.025em;
  color: var(--site-navy);
}

.info-card p {
  margin: 12px 0 0;
  line-height: 1.7;
  color: var(--site-muted);
  font-size: 15px;
}

/* Publications */

.publications {
  padding: 64px 0;
}

.publications__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.publications__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.publication-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--site-radius-lg);
  border: 1px solid var(--site-border);
  background: #ffffff;
  box-shadow: var(--site-shadow-soft);
}

.publication-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.publication-card__meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--site-soft-2);
  color: var(--site-blue);
  font-size: 12px;
  font-weight: 800;
}

.publication-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--site-navy);
}

.publication-card p {
  margin: 14px 0 0;
  color: var(--site-muted);
  line-height: 1.7;
  font-size: 15px;
}

.publication-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  color: #344054;
  font-size: 14px;
  line-height: 1.5;
}

.publication-card li {
  position: relative;
  padding-left: 20px;
}

.publication-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--site-blue);
}

.publication-card .btn {
  margin-top: auto;
  width: 100%;
}

/* Steps */

.steps {
  padding: 74px 0;
  background: var(--site-soft);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.step-card {
  position: relative;
  padding: 24px;
  border-radius: var(--site-radius);
  background: #ffffff;
  border: 1px solid var(--site-border);
}

.step-card__number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--site-navy);
  color: #ffffff;
  font-weight: 900;
}

.step-card h3 {
  margin: 0;
  color: var(--site-navy);
  letter-spacing: -0.02em;
  font-size: 18px;
}

.step-card p {
  margin: 10px 0 0;
  color: var(--site-muted);
  line-height: 1.65;
  font-size: 14px;
}

/* Form */

.lead-section {
  padding: 86px 0;
}

.lead-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0) 45%),
    #ffffff;
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow);
}

.lead-card__side {
  padding: 28px;
  border-radius: 26px;
  background: var(--site-navy);
  color: #ffffff;
}

.lead-card__side h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.lead-card__side p {
  margin: 18px 0 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.lead-card__side ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.lead-card__side li {
  position: relative;
  padding-left: 24px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.lead-card__side li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #93c5fd;
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  align-content: start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--site-navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--site-border);
  border-radius: 14px;
  padding: 0 14px;
  outline: none;
  color: var(--site-text);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 110px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(37, 99, 235, 0.72);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--site-muted);
}

.checkbox input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.checkbox a {
  color: var(--site-blue);
  font-weight: 800;
}

.form-error {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff1f2;
  color: #be123c;
  font-size: 13px;
  line-height: 1.5;
  border: 1px solid #fecdd3;
}

.form-error.is-visible {
  display: block;
}

.form-note {
  margin: 0;
  color: var(--site-muted);
  font-size: 12px;
  line-height: 1.6;
}

/* FAQ */

.faq {
  padding: 70px 0 20px;
  background: var(--site-soft);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--site-radius);
  background: #ffffff;
  border: 1px solid var(--site-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  color: var(--site-navy);
  font-weight: 850;
}

.faq-question span:last-child {
  font-size: 22px;
  color: var(--site-blue);
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--site-muted);
  line-height: 1.7;
  font-size: 14px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Footer */

.site-footer {
  background: var(--site-navy);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__grid {
  padding: 56px 0 34px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 34px;
}

.site-logo--footer .site-logo__text strong {
  color: #ffffff;
}

.site-logo--footer .site-logo__text small {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__brand p {
  max-width: 450px;
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.75;
}

.site-footer__col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__col h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.site-footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.site-footer__col a:hover {
  color: #ffffff;
}

.site-footer__notice {
  padding: 22px;
  border-radius: var(--site-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1.7;
}

.site-footer__notice p {
  margin: 0;
}

.site-footer__notice p + p {
  margin-top: 10px;
}

.site-footer__bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 20, 38, 0.72);
  backdrop-filter: blur(8px);
}

.modal.is-visible {
  display: flex;
}

.modal__box {
  width: min(460px, 100%);
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.modal__loader {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 5px solid #dbeafe;
  border-top-color: var(--site-blue);
  animation: spin 1s linear infinite;
}

.modal__icon {
  width: 58px;
  height: 58px;
  display: none;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 28px;
  font-weight: 900;
}

.modal.is-success .modal__loader {
  display: none;
}

.modal.is-success .modal__icon {
  display: grid;
}

.modal h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.035em;
  color: var(--site-navy);
}

.modal p {
  margin: 12px 0 0;
  color: var(--site-muted);
  line-height: 1.65;
}

.modal__close {
  display: none;
  margin: 22px auto 0;
}

.modal.is-success .modal__close {
  display: inline-flex;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */

@media (max-width: 1040px) {
  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 68px 0;
  }

  .hero__panel {
    max-width: 680px;
  }

  .publications__grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-card {
    grid-template-columns: 1fr;
  }

  .faq__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-disclosure__inner {
    justify-content: center;
    text-align: center;
  }

  .site-disclosure__inner span:last-child {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 102px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--site-border);
    border-radius: 20px;
    box-shadow: var(--site-shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--site-soft);
  }

  .site-nav__cta {
    margin-top: 6px;
    min-height: 46px;
    padding: 0 16px !important;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .publications__head {
    display: block;
  }

  .publications__head .btn {
    margin-top: 22px;
  }

  .publications__grid,
  .intro__grid,
  .steps__grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-container {
    width: min(100% - 24px, 1180px);
  }

  /* .site-logo__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  } */
.site-logo__image {
  width: 100%;
  height: 40px;
}
  .site-logo__text strong {
    font-size: 18px;
  }

  .site-logo__text small {
    max-width: 190px;
    white-space: normal;
  }

  .site-nav {
    top: 102px;
    left: 12px;
    right: 12px;
  }

  .hero__inner {
    padding: 52px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__panel {
    padding: 16px;
  }

  .intro,
  .lead-section {
    padding: 56px 0;
  }

  .publications,
  .steps {
    padding: 56px 0;
  }

  .lead-card {
    padding: 18px;
    border-radius: 24px;
  }

  .lead-card__side {
    padding: 22px;
    border-radius: 20px;
  }

  .lead-card__side h2 {
    font-size: 28px;
  }

  .site-footer__grid {
    padding-top: 42px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom-inner {
    padding: 16px 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}
/*  */
/* Book section */

.book-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.book-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.book-section__content {
  min-width: 0;
}

.book-section__title {
  margin: 0;
  max-width: 780px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--site-navy);
}

.book-section__lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.75;
  color: #1f2937;
}

.book-section__lead strong {
  color: var(--site-navy);
}

.book-benefits {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.book-benefits li {
  position: relative;
  padding-left: 48px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--site-navy);
}

.book-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #06468f;
  font-size: 28px;
  font-weight: 950;
}

.book-benefits strong {
  display: block;
  font-weight: 900;
}

.book-benefits span {
  display: block;
  color: #1f2937;
  font-weight: 500;
}

.book-section__text {
  max-width: 720px;
  margin: 32px 0 0;
  font-size: 20px;
  line-height: 1.7;
  color: #1f2937;
}

.book-section__visual {
  display: flex;
  justify-content: center;
}

.book-cover-card {
  position: relative;
  width: min(100%, 420px);
  padding: 26px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(255, 255, 255, 0.7)),
    #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 28px 80px rgba(7, 20, 38, 0.16);
}

.book-cover-card::before {
  content: "";
  position: absolute;
  inset: 22px -14px -18px 36px;
  z-index: 0;
  border-radius: 30px;
  background: rgba(7, 20, 38, 0.08);
  filter: blur(10px);
}

.book-cover-card__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 18px;
}

.book-cover-card__button {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 18px;
  padding: 17px 20px;
  border-radius: 20px;
  background: var(--site-navy);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.book-cover-card__button:hover {
  transform: translateY(-2px);
  background: var(--site-blue);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.book-cover-card__button span {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.book-cover-card__button strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.book-mini-form {
  margin-top: 34px;
  max-width: 760px;
}

.book-mini-form__notice {
  max-width: 680px;
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 1.45;
  color: #111827;
}

.book-mini-form__row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, 0.95fr);
  gap: 14px;
}

.book-mini-form__row input {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid #c9ced6;
  border-radius: 6px;
  background: #ffffff;
  color: #111827;
  outline: none;
}

.book-mini-form__row input:focus {
  border-color: var(--site-blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.book-mini-form__row button {
  min-height: 58px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #ff9f0a 0%, #ff6a00 100%);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
  padding: 0 22px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.book-mini-form__row button:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.book-mini-form__privacy {
  display: inline-block;
  margin-top: 18px;
  color: #111827;
  font-size: 12px;
  text-decoration: underline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Responsive book section */

@media (max-width: 1040px) {
  .book-section__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .book-section__visual {
    justify-content: flex-start;
  }

  .book-cover-card {
    max-width: 380px;
  }
}

@media (max-width: 720px) {
  .book-section {
    padding: 58px 0;
  }

  .book-section__title {
    font-size: 36px;
  }

  .book-section__lead {
    font-size: 16px;
  }

  .book-benefits {
    gap: 18px;
    margin-top: 28px;
  }

  .book-benefits li {
    padding-left: 38px;
    font-size: 16px;
  }

  .book-benefits li::before {
    width: 24px;
    height: 24px;
    font-size: 23px;
  }

  .book-section__text {
    font-size: 17px;
  }

  .book-mini-form__row {
    grid-template-columns: 1fr;
  }

  .book-mini-form__row input,
  .book-mini-form__row button {
    min-height: 56px;
  }

  .book-cover-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 26px;
  }
}
/* =========================================================
   Stock Report Section — Top-Aktien 2026
   Fully isolated style, does not depend on .book-section
========================================================= */

.stock-report {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 140, 0, 0.16), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(37, 99, 235, 0.09), transparent 32%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 45%, #f8fafc 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #111827;
}

.stock-report *,
.stock-report *::before,
.stock-report *::after {
  box-sizing: border-box;
}

.stock-report__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 64px;
}

/* Left visual */

.stock-report__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stock-report__cover {
  position: relative;
  width: min(100%, 430px);
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 237, 213, 0.82)),
    #ffffff;
  border: 1px solid rgba(251, 146, 60, 0.28);
  box-shadow:
    0 30px 80px rgba(124, 45, 18, 0.16),
    0 12px 28px rgba(15, 23, 42, 0.08);
}

.stock-report__cover::before {
  content: "";
  position: absolute;
  inset: 42px -20px -24px 46px;
  z-index: 0;
  border-radius: 34px;
  background: rgba(124, 45, 18, 0.14);
  filter: blur(18px);
}

.stock-report__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 20px;
}

.stock-report__details {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #111827 0%, #7c2d12 100%);
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.stock-report__details:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 16px 34px rgba(124, 45, 18, 0.28);
}

.stock-report__details span {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stock-report__details strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* Right content */

.stock-report__content {
  min-width: 0;
}

.stock-report__label {
  margin: 0 0 14px;
  color: #ea580c;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stock-report__title {
  margin: 0;
  max-width: 820px;
  color: #111827;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.stock-report__lead {
  max-width: 800px;
  margin: 24px 0 0;
  color: #374151;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
}

.stock-report__list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.stock-report__list li {
  position: relative;
  min-height: 34px;
  padding-left: 48px;
  color: #111827;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.stock-report__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.26);
}

.stock-report__list li::after {
  content: "✓";
  position: absolute;
  left: 8px;
  top: 3px;
  color: #ffffff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 950;
}

.stock-report__list strong {
  display: block;
  color: #111827;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.stock-report__list span {
  display: block;
  margin-top: 2px;
  color: #4b5563;
  font-weight: 500;
}

.stock-report__summary {
  max-width: 780px;
  margin: 30px 0 0;
  color: #1f2937;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
}

/* Form */

.stock-report-form {
  margin-top: 34px;
  max-width: 780px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(251, 146, 60, 0.24);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.stock-report-form__notice {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 500;
}

.stock-report-form__notice--small {
  margin: 16px 0 0;
  font-size: 10.5px;
  color: #6b7280;
}

.stock-report-form__row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 0.92fr);
  gap: 12px;
  margin: 0;
}

.stock-report-form__row input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
  outline: none;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.stock-report-form__row input::placeholder {
  color: #6b7280;
}

.stock-report-form__row input:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.stock-report-form__row button {
  min-height: 58px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffb020 0%, #f97316 100%);
  color: #ffffff;
  cursor: pointer;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.stock-report-form__row button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.3);
}

/* Screen-reader label */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Responsive */

@media (max-width: 1080px) {
  .stock-report {
    padding: 76px 0;
  }

  .stock-report__inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .stock-report__content {
    order: 1;
  }

  .stock-report__visual {
    order: 2;
    justify-content: flex-start;
  }

  .stock-report__cover {
    max-width: 390px;
  }
}

@media (max-width: 720px) {
  .stock-report {
    padding: 58px 0;
  }

  .stock-report__inner {
    gap: 36px;
  }

  .stock-report__title {
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .stock-report__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.68;
  }

  .stock-report__list {
    gap: 16px;
    margin-top: 28px;
  }

  .stock-report__list li {
    padding-left: 42px;
    font-size: 15.5px;
  }

  .stock-report__list li::before {
    width: 27px;
    height: 27px;
  }

  .stock-report__list li::after {
    left: 7px;
    top: 2px;
    font-size: 17px;
    line-height: 27px;
  }

  .stock-report__summary {
    font-size: 16.5px;
  }

  .stock-report-form {
    padding: 16px;
    border-radius: 20px;
  }

  .stock-report-form__row {
    grid-template-columns: 1fr;
  }

  .stock-report-form__row input,
  .stock-report-form__row button {
    min-height: 56px;
  }

  .stock-report__visual {
    justify-content: center;
  }

  .stock-report__cover {
    width: 100%;
    max-width: 340px;
    padding: 18px;
    border-radius: 26px;
  }

  .stock-report__details {
    border-radius: 16px;
  }

  .stock-report__details strong {
    font-size: 18px;
  }
}