:root {
  --navy: #1b3e46;
  --red: #a11d1f;
  --turquoise: #29b3a5;
  --turquoise-dark: #14756f;
  --ink: #1b3e46;
  --muted: #526b71;
  --paper: #f8fbfa;
  --surface: #ffffff;
  --soft-blue: #eef7f8;
  --soft-turquoise: #e7f7f4;
  --soft-red: #fff4f3;
  --line: #d4e8e5;
  --shadow: 0 22px 70px rgba(27, 62, 70, 0.1);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 233, 230, 0.82);
  backdrop-filter: blur(18px);
}

main,
section,
footer {
  max-width: 100vw;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(132px, 16vw, 164px);
  height: auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: none;
}

.site-nav {
  position: absolute;
  top: 72px;
  right: 20px;
  left: 20px;
  display: none;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-header.is-open .site-nav {
  display: grid;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
}

.site-nav .nav-cta {
  display: inline-flex;
  justify-content: center;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(161, 29, 31, 0.14);
}

.nav-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(27, 62, 70, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--navy);
}

.hero {
  display: grid;
  gap: 34px;
  padding: 48px 20px 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 13%, rgba(41, 179, 165, 0.14), transparent 27%),
    radial-gradient(circle at 11% 88%, rgba(161, 29, 31, 0.045), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfa 100%);
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--turquoise-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(2.16rem, 8.4vw, 3.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.58rem, 5vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.narrow-copy p,
.step-card p,
.theme-card p,
.preview-list p,
.request-copy p,
.trust-box p,
.privacy-note {
  color: var(--muted);
}

.hero-text {
  max-width: 650px;
  font-size: clamp(1.02rem, 3.2vw, 1.18rem);
}

.fio-inline {
  display: inline-flex;
  max-width: 430px;
  margin-top: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(41, 179, 165, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.button,
.mini-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 850;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.mini-cta:hover {
  transform: translateY(-2px);
}

.button-primary,
.mini-cta {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(161, 29, 31, 0.2);
}

.button-secondary {
  gap: 8px;
  border: 1px solid rgba(41, 179, 165, 0.42);
  background: #ffffff;
}

.instagram-icon {
  display: block;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 6px;
  object-fit: contain;
}

.instagram-icon::before {
  content: none;
}

.instagram-icon::after {
  content: none;
}

.hero-preview {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 680px;
  isolation: isolate;
}

.hero-preview::before {
  position: absolute;
  inset: 78px 6px 44px;
  z-index: -1;
  border-radius: 34px;
  content: "";
  background: linear-gradient(145deg, rgba(41, 179, 165, 0.13), rgba(255, 255, 255, 0.96) 48%, rgba(237, 247, 248, 0.94));
  transform: rotate(-2deg);
}

.fio-hero,
.fio-guide-card,
.preview-fio-card {
  display: grid;
  align-items: center;
  gap: 12px;
}

.fio-hero {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 0;
  grid-template-columns: 112px minmax(0, 1fr);
  max-width: 410px;
  margin: 0;
}

.fio-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(27, 62, 70, 0.11));
}

.fio-photo {
  border: 1px solid rgba(41, 179, 165, 0.18);
  border-radius: 999px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 14px 34px rgba(27, 62, 70, 0.08);
  filter: none;
}

.fio-small {
  width: 66px;
}

.fio-medium {
  width: 96px;
}

.fio-large {
  width: 122px;
}

.fio-wave {
  transform-origin: 50% 88%;
  transition: transform 180ms ease;
}

.fio-hero:hover .fio-wave {
  transform: translateY(-10px) rotate(-2deg);
}

.fio-speech {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  border: 1px solid rgba(41, 179, 165, 0.28);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(27, 62, 70, 0.09);
}

.fio-speech span {
  color: var(--muted);
  font-size: 0.9rem;
}

.book-card {
  position: relative;
  width: min(430px, 100%);
  max-width: 430px;
  margin: 118px auto 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.preview-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--turquoise-dark);
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.74rem;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(27, 62, 70, 0.1);
}

.cover-image {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(27, 62, 70, 0.08);
  border-radius: 22px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.note-card {
  position: absolute;
  z-index: 5;
  left: -24px;
  bottom: 46px;
  display: grid;
  width: min(190px, 52vw);
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(41, 179, 165, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 38px rgba(27, 62, 70, 0.14);
}

.note-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 60px 20px;
}

.section-heading,
.narrow-copy {
  max-width: 840px;
  margin: 0 auto 28px;
}

.wish-section,
.preview-section,
.trust-section {
  background: #ffffff;
}

.wish-card,
.preview-layout {
  display: grid;
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto;
}

.wish-note-card,
.step-card,
.theme-card,
.preview-list article,
.benefit-card,
.compact-faq article,
.info-card,
.example-card,
.legal-card,
.trust-box,
.tally-wrapper {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(27, 62, 70, 0.05);
}

.wish-note-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, var(--soft-turquoise));
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.steps-section,
.why-section,
.home-faq-section {
  background: linear-gradient(180deg, var(--paper), var(--soft-turquoise));
}

.fio-guide-card {
  grid-template-columns: 100px 1fr;
  max-width: 780px;
  margin: 0 auto 24px;
  padding: 14px 18px;
  border: 1px solid rgba(41, 179, 165, 0.24);
  border-radius: 24px;
  background: #ffffff;
}

.fio-guide-card .fio-image {
  justify-self: center;
  width: 82px;
}

.steps-grid,
.theme-grid,
.benefit-grid {
  display: grid;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.step-card,
.theme-card,
.benefit-card {
  padding: 22px;
}

.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #ffffff;
  background: var(--turquoise-dark);
  font-weight: 900;
}

.theme-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(41, 179, 165, 0.18);
  border-radius: 22px;
  background: #ffffff;
  font-size: 2.4rem;
}

.theme-note,
.preview-note {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.page-stack {
  position: relative;
  min-height: 380px;
}

.sample-page {
  position: absolute;
  width: min(250px, 72vw);
  min-height: 320px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.sample-page:nth-child(1) {
  left: 10px;
  top: 4px;
  z-index: 3;
  transform: rotate(-4deg);
}

.sample-page:nth-child(2) {
  left: 58px;
  top: 26px;
  z-index: 2;
  transform: rotate(5deg);
}

.sample-page:nth-child(3) {
  left: 102px;
  top: 50px;
  z-index: 1;
  transform: rotate(10deg);
}

.sample-cover {
  overflow: hidden;
  padding: 0;
  background: #ffffff;
}

.sample-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-coloring {
  display: grid;
  gap: 16px;
  align-content: start;
  overflow: hidden;
}

.sample-coloring img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.sample-lines {
  width: 82%;
  height: 72px;
  margin: 26px 0;
  border-radius: 14px;
  background: linear-gradient(var(--line) 10px, transparent 10px 22px) left top / 100% 22px;
}

.sample-picture {
  height: 120px;
  border: 3px solid var(--navy);
  border-radius: 22px;
  background: var(--soft-turquoise);
}

.sample-picture.small {
  height: 98px;
  background: var(--soft-red);
}

.preview-list {
  display: grid;
  gap: 14px;
}

.preview-fio-card,
.preview-list article,
.benefit-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 18px;
}

.preview-fio-card {
  grid-template-columns: 108px 1fr;
  border: 1px solid rgba(41, 179, 165, 0.24);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, var(--soft-turquoise));
}

.preview-motif-image {
  display: block;
  justify-self: center;
  width: 96px;
  height: 96px;
  border-radius: 18px;
  background: #ffffff;
  object-fit: contain;
}

.fio-preview-image {
  object-fit: cover;
  object-position: center top;
}

.preview-list article span {
  color: var(--turquoise-dark);
  font-weight: 900;
}

.benefit-grid {
  max-width: 1120px;
}

.benefit-card > span {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--turquoise);
  box-shadow: inset 0 0 0 5px #ffffff;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
}

.benefit-card p {
  margin-bottom: 0;
}

.compact-faq {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.compact-faq article {
  padding: 20px;
}

.compact-faq h3,
.compact-faq p {
  margin-bottom: 0;
}

.compact-faq h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.compact-faq p,
.info-card p,
.legal-card p,
.legal-card li,
.example-card p,
.faq-list p {
  color: var(--muted);
}

.trust-box {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(28px, 7vw, 54px);
  background: linear-gradient(135deg, #ffffff, var(--soft-blue) 52%, var(--soft-turquoise));
}

.trust-box .fio-trust {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 86px;
  opacity: 0.96;
}

.trust-box p:not(.eyebrow) {
  max-width: 680px;
  padding-right: 92px;
}

.request-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(161, 29, 31, 0.05), transparent 26%),
    linear-gradient(180deg, #ffffff, var(--soft-blue));
}

.request-copy {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--turquoise-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.tally-section {
  display: flex;
  justify-content: center;
  padding: 26px 0 0;
}

.tally-wrapper {
  width: 100%;
  max-width: 960px;
  background: linear-gradient(180deg, #ffffff, #ffffff 82%, var(--soft-turquoise));
  box-shadow: 0 18px 46px rgba(27, 62, 70, 0.08);
}

.test-note {
  margin: 24px 24px 0;
  padding: 16px 18px;
  border: 1px solid rgba(161, 29, 31, 0.12);
  border-radius: 18px;
  color: var(--navy);
  background: #fff8f7;
  font-weight: 750;
}

.tally-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
}

.privacy-note {
  margin: 0 24px 24px;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 34px 20px;
  color: rgba(255, 255, 255, 0.78);
  background: #132d33;
}

.site-footer strong {
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
}

.footer-logo {
  display: block;
  width: 150px;
  max-width: none;
  height: auto;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  object-fit: contain;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  font-weight: 750;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer .instagram-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.page-hero {
  padding: 58px 20px 42px;
  background:
    radial-gradient(circle at 86% 10%, rgba(41, 179, 165, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.page-hero-inner,
.page-content {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.page-hero-inner {
  display: grid;
  gap: 24px;
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2rem, 7vw, 3.3rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero-visual {
  display: none;
}

.info-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff, var(--soft-turquoise));
}

.example-showcase {
  display: grid;
  gap: 18px;
}

.example-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.example-card img {
  display: block;
  width: 100%;
  border: 1px solid rgba(27, 62, 70, 0.08);
  border-radius: 18px;
  background: #ffffff;
  object-fit: cover;
}

.example-card.cover-preview img {
  aspect-ratio: 2 / 3;
}

.example-card.coloring-preview img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 14px;
}

.example-placeholder {
  display: grid;
  min-height: 260px;
  align-content: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(var(--line) 9px, transparent 9px 22px) 24px 94px / calc(100% - 48px) 22px no-repeat,
    linear-gradient(135deg, #ffffff, var(--soft-blue));
}

.example-placeholder .sample-picture {
  max-width: 240px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(27, 62, 70, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.legal-card {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 42px);
}

.legal-card h2 {
  margin-top: 12px;
  font-size: clamp(1.32rem, 4vw, 1.8rem);
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-card li + li {
  margin-top: 8px;
}

@media (min-width: 680px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .steps-grid,
  .theme-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .compact-faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .site-header {
    padding: 16px clamp(32px, 5vw, 70px);
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.64fr);
    align-items: center;
    gap: clamp(30px, 5vw, 70px);
    min-height: calc(82vh - 75px);
    padding: 52px clamp(32px, 5vw, 70px) 64px;
  }

  .book-card {
    margin-left: 0;
  }

  .note-card {
    left: -28px;
    bottom: 46px;
  }

  .section {
    padding: 74px clamp(32px, 5vw, 70px);
  }

  .section-heading {
    text-align: center;
  }

  .wish-card {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
    align-items: center;
  }

  .preview-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    align-items: center;
  }

  .benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .benefit-card {
    grid-column: span 2;
  }

  .benefit-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .benefit-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 38px clamp(32px, 5vw, 70px);
  }

  .site-footer nav {
    display: flex;
    gap: 22px;
  }

  .page-hero {
    padding: 74px clamp(32px, 5vw, 70px) 52px;
  }

  .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
  }

  .page-hero-visual {
    display: block;
    justify-self: end;
    width: 160px;
  }

  .example-showcase {
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
  }

  .example-card.cover-preview {
    grid-row: span 2;
  }
}

@media (max-width: 520px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px;
    width: 100vw;
    padding: 12px 20px;
  }

  .brand {
    width: 132px;
  }

  .nav-toggle {
    display: grid !important;
    position: fixed;
    z-index: 3;
    top: 12px;
    right: auto;
    left: min(calc(100vw - 62px), 326px);
    background: rgba(255, 255, 255, 0.98);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 20px;
    overflow: hidden;
  }

  .hero * {
    min-width: 0;
  }

  .hero-copy,
  .hero-preview {
    width: min(100%, calc(100vw - 64px));
    max-width: 100%;
    min-width: 0;
  }

  .hero-text,
  .fio-inline {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-text {
    max-width: 31ch;
  }

  .fio-inline {
    display: block;
    width: 286px;
    max-width: calc(100vw - 84px);
    border-radius: 26px;
    overflow-wrap: anywhere;
    margin-right: 44px;
  }

  .hero-actions {
    display: block;
    width: min(100%, calc(100vw - 64px));
  }

  .button {
    width: 286px;
    max-width: 100%;
    margin: 0 44px 12px 0;
    white-space: normal;
  }

  .fio-hero {
    position: static;
    grid-template-columns: 74px minmax(0, 1fr);
    justify-self: center;
    width: min(100%, calc(100vw - 64px));
    max-width: 350px;
    gap: 10px;
    margin: 0 auto 14px;
  }

  .fio-wave {
    width: 74px;
  }

  .fio-speech {
    padding: 12px 14px;
  }

  .fio-speech span {
    font-size: 0.84rem;
  }

  .book-card {
    width: 100%;
    max-width: min(280px, calc(100vw - 96px));
    margin-top: 0;
  }

  .note-card {
    left: -6px;
    bottom: 34px;
    width: 170px;
  }

  .hero-preview {
    min-height: auto;
  }

  .trust-box p:not(.eyebrow) {
    padding-right: 0;
  }

  .trust-box .fio-trust {
    position: static;
    margin: 8px 0 0 auto;
    width: 86px;
  }

  .tally-wrapper iframe {
    min-height: 950px;
  }
}
