:root {
  --navy: #071536;
  --blue: #6fa8ff;
  --soft-blue: #eaf3ff;
  --yellow: #ffd923;
  --muted: #64708a;
  --line: #dbe4f2;
  --shadow: 0 18px 60px rgba(7, 21, 54, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 6% 4%, rgba(255, 245, 84, 0.68), transparent 22%),
    radial-gradient(circle at 88% 6%, rgba(105, 166, 255, 0.72), transparent 30%),
    radial-gradient(ellipse at 8% 22%, rgba(255, 246, 92, 0.38), transparent 33%),
    radial-gradient(ellipse at 94% 28%, rgba(112, 178, 255, 0.42), transparent 34%),
    radial-gradient(ellipse at 16% 48%, rgba(255, 245, 84, 0.22), transparent 30%),
    radial-gradient(ellipse at 88% 62%, rgba(112, 178, 255, 0.25), transparent 35%),
    linear-gradient(180deg, #f8fbff 0%, #dceeff 30%, #eaf4ff 58%, #f9fbff 82%, #fff 100%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.site-header, .section, footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, rgba(205, 230, 255, .75), rgba(205, 230, 255, .28) 48%, transparent 74%);
  filter: blur(4px);
}

.brand img {
  width: 148px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  mix-blend-mode: normal;
  opacity: .96;
  filter: none;
  mask-image: none;
}
.site-header .brand img { width: 132px; }
.brand-text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .01em;
}

.main-nav, footer nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  font-weight: 700;
  font-size: 14px;
}

.header-actions {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
}
.header-contacts {
  display: grid;
  gap: 2px;
  justify-items: end;
}
.header-contacts a {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  color: #245ccb;
}
.socials {
  display: flex;
  gap: 8px;
}
.social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
.social img {
  width: 16px;
  height: 16px;
  display: block;
}
.social.tg { background: #27a7e7; }
.social.wa { background: #25d366; }
.social.max { background: #232323; }

.phone {
  font-weight: 800;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1;
  letter-spacing: .01em;
  white-space: nowrap;
}

.btn {
  border: 0;
  border-radius: 8px;
  min-height: 48px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.btn-yellow { background: var(--yellow); color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); border: 1px solid #bcc9dd; }
.btn.active, [data-favorite].active {
  background: #fff2a8;
  border-color: #e2c100;
  color: var(--navy);
}

.section { margin-top: 58px; }
.section:nth-of-type(2) {
  position: relative;
  padding: 22px 0 28px;
}
.section:nth-of-type(2)::before {
  content: "";
  position: absolute;
  inset: -48px -8vw -34px;
  z-index: -1;
  background:
    radial-gradient(ellipse at 8% 8%, rgba(255, 246, 94, .28), transparent 42%),
    radial-gradient(ellipse at 86% 34%, rgba(113, 177, 255, .45), transparent 45%),
    linear-gradient(90deg, rgba(242, 246, 183, .42), rgba(197, 227, 255, .58));
}
.section h2 { margin: 0 0 24px; font-size: clamp(25px, 3vw, 34px); line-height: 1.15; }

.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: start;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8vw;
  right: -8vw;
  bottom: -120px;
  height: 260px;
  z-index: 0;
  background: linear-gradient(180deg, rgba(221, 240, 255, 0), rgba(198, 228, 255, .62) 48%, rgba(210, 234, 255, .18) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 18px;
}

h1 {
  margin: 0 0 26px;
  font-size: clamp(34px, 4.35vw, 52px);
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-copy p {
  margin: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

.hero-visual {
  position: absolute;
  right: -42px;
  top: 34px;
  width: min(610px, 56vw);
  height: 310px;
  overflow: hidden;
  border-radius: 0 0 0 10px;
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 10%, #000 30%, #000 72%, rgba(0,0,0,.52) 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
  mask-composite: intersect;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 251, 232, 0.98) 0%, rgba(247, 251, 232, 0.74) 22%, rgba(233, 244, 255, 0.3) 48%, rgba(154, 196, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(247, 251, 232, 0.05), rgba(239, 247, 255, 0.36));
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.search-panel {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 26px 36px;
  border-radius: 18px;
  background:
    linear-gradient(100deg, rgba(255, 250, 150, 0.48), rgba(220, 239, 255, 0.82)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr auto auto;
  gap: 22px;
  align-items: center;
}

.search-panel label, .lead-form label { display: grid; gap: 8px; color: var(--muted); font-size: 13px; font-weight: 600; }
select, input {
  width: 100%;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.search-panel select { padding: 0; min-height: 24px; background: transparent; }

.segments, .benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.segments article, .benefits article, .object-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(219, 228, 242, 0.75);
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(7, 21, 54, 0.08);
}

.segments article {
  min-height: 178px;
  padding: 28px 20px;
  display: grid;
  place-items: center;
  text-align: center;
  transition: transform .35s ease, box-shadow .3s ease, opacity .45s ease;
}

.segments article:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.segments img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.benefits img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.segments h3, .benefits h3, .object-card h3 { margin: 0; font-size: 18px; line-height: 1.35; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2 { margin: 0; }
.section-head a, .catalog-toggle {
  font-weight: 800;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
}

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

.catalog-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.favorites-section {
  padding: 34px;
  border-radius: 18px;
  background:
    linear-gradient(110deg, rgba(255, 217, 35, .35), rgba(234, 243, 255, .86)),
    rgba(255, 255, 255, .74);
  box-shadow: 0 18px 54px rgba(7,21,54,.11);
}
.favorites-note {
  max-width: 720px;
  margin: 8px 0 22px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}
.favorites-list {
  display: grid;
  gap: 14px;
}
.favorite-card {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(188, 201, 221, .72);
  border-radius: 12px;
  background: rgba(255,255,255,.86);
}
.favorite-card img {
  width: 132px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
}
.favorite-card span {
  display: inline-block;
  margin-bottom: 6px;
  color: #245ccb;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}
.favorite-card h3 {
  margin: 0;
  font-size: 20px;
}
.favorite-card p {
  margin: 6px 0;
  color: var(--muted);
  font-weight: 600;
}
.favorite-card strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}
.favorite-actions {
  display: grid;
  gap: 10px;
  min-width: 160px;
}

.object-card { overflow: hidden; }
.photo { position: relative; height: 192px; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo b {
  position: absolute;
  left: 20px;
  top: 18px;
  padding: 8px 13px;
  border-radius: 8px;
  background: #5a62ff;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
}
.photo b.green { background: #24b55b; }
.photo button {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.8);
  background: rgba(7,21,54,.28);
  color: #fff;
  font-size: 24px;
}

.card-body { padding: 24px; }
.card-body p, .benefits p, .lead-form p, .hook p {
  color: var(--muted);
  line-height: 1.55;
  margin: 12px 0;
  font-weight: 600;
}
.area { display: block; margin: 14px 0; font-weight: 700; }
.card-body strong { display: block; font-size: 23px; margin: 18px 0; }
.card-body small {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  margin-left: 8px;
}
ul { padding: 0; margin: 0 0 24px; list-style: none; display: grid; gap: 10px; font-weight: 600; font-size: 14px; }
li::before { content: "✓"; margin-right: 10px; }
.card-actions { display: grid; grid-template-columns: 1fr 1.2fr; gap: 12px; }

.object-modal {
  width: min(1060px, calc(100% - 32px));
  border: 0;
  border-radius: 16px;
  padding: 0;
  color: var(--navy);
  box-shadow: 0 30px 90px rgba(7, 21, 54, 0.28);
}

.object-modal::backdrop {
  background: rgba(7, 21, 54, 0.48);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
}

.modal-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  padding: 30px;
}

.modal-main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: #eef3f9;
}

.modal-thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.modal-thumbs button {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: #eef3f9;
}

.modal-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
  display: block;
}

.modal-content {
  padding: 18px 12px 18px 0;
  display: grid;
  align-content: start;
  gap: 16px;
}

.modal-content h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12;
}

.modal-content p,
.modal-content span {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.modal-content strong {
  font-size: 28px;
}

.modal-badge {
  justify-self: start;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--navy) !important;
  font-size: 12px;
  text-transform: uppercase;
}

.hook {
  padding: 30px 38px;
  border-radius: 16px;
  background: linear-gradient(105deg, #2360d5, #9dc8ff);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
.hook h2, .hook p { margin: 0; color: #fff; }
.hook p { margin-top: 10px; }
.center { text-align: center; }

.benefits { grid-template-columns: repeat(4, 1fr); }
.benefits article {
  padding: 28px;
  min-height: 205px;
  transition: transform .35s ease, box-shadow .3s ease, opacity .45s ease;
}
.benefits span { color: #c9d600; font-size: 38px; }
.segments article:hover,
.benefits article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px) scale(.98);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-26px);
}
.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.lead {
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(420px, 1fr);
  gap: 0;
  align-items: stretch;
  background:
    linear-gradient(125deg, rgba(255, 245, 91, .72), rgba(143, 195, 255, .82)),
    rgba(255,255,255,.72);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 64px rgba(7,21,54,.13);
}
.lead-story {
  position: relative;
  min-height: 420px;
  padding: 36px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.lead-story::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,21,54,.08), rgba(7,21,54,.78)),
    linear-gradient(120deg, rgba(255,217,35,.22), rgba(111,168,255,.24));
}
.lead-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.lead-story-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.lead-story-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.02;
}
.lead-story-copy p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}
.lead-story-copy ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.lead-story-copy li {
  color: #fff;
  font-weight: 800;
}
.lead-form {
  margin: 28px;
  padding: 28px;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 42px rgba(7,21,54,.10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
}
.lead-form h2 { margin: 0; }
.lead-form h2, .lead-form p, .wide, .consent { grid-column: 1 / -1; }
.lead-form input, .lead-form select { border-color: #e7edf6; }
.consent { display: flex !important; align-items: center; grid-template-columns: auto 1fr; color: var(--navy) !important; }
.consent input { width: 18px; min-height: 18px; accent-color: var(--yellow); }
.policy-link {
  border: 0;
  background: transparent;
  color: #245ccb;
  justify-self: start;
  padding: 0;
  text-decoration: underline;
  font-weight: 700;
}
.lead-form button[disabled] {
  opacity: .5;
  cursor: not-allowed;
}
.lead-form.is-success {
  box-shadow: inset 0 0 0 2px rgba(28, 161, 78, 0.45);
  border-radius: 10px;
  animation: pulse-success .7s ease;
}

@keyframes pulse-success {
  0% { transform: translateY(0); }
  45% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

footer p { margin: 0; }

.float-actions {
  position: fixed;
  right: 38px;
  bottom: 90px;
  display: grid;
  gap: 14px;
  z-index: 9;
}
.float-actions a, .float-actions button {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 0;
  font-size: 26px;
  font-weight: 800;
}
.float-actions a { background: var(--navy); color: #fff; }
.favorite-float {
  position: relative;
  background: var(--yellow) !important;
  color: var(--navy) !important;
}
.favorite-float span {
  position: absolute;
  right: -6px;
  top: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.favorite-float:not(.has-items) span { display: none; }

footer {
  width: 100%;
  margin-top: 64px;
  padding: 40px max(20px, calc((100vw - 1260px) / 2));
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
footer > div {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.footer-logo {
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-logo img {
  width: 132px;
  mix-blend-mode: normal;
  opacity: .95;
  filter: none;
  mask-image: none;
}
footer p {
  text-align: center;
  font-weight: 800;
  font-size: clamp(22px, 1.65vw, 30px);
  line-height: 1;
  margin: 0;
  white-space: nowrap;
}
.footer-nick {
  font-size: clamp(18px, 1.25vw, 22px);
  letter-spacing: .01em;
}

.policy-modal {
  width: min(760px, calc(100% - 32px));
  border: 0;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(7, 21, 54, 0.28);
  padding: 28px;
}
.policy-modal::backdrop { background: rgba(7, 21, 54, 0.48); }
.policy-content h2 { margin-top: 0; }
.policy-content h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 18px;
}
.policy-content p { color: var(--muted); line-height: 1.55; font-weight: 600; }
.policy-content a { color: #245ccb; text-decoration: underline; }

.submit-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  min-width: 260px;
  max-width: min(420px, calc(100% - 32px));
  padding: 14px 16px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.submit-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.submit-toast.success { background: #1f9e51; }
.submit-toast.error { background: #c63636; }

@media (max-width: 980px) {
  .site-header { align-items: flex-start; padding-top: 24px; flex-wrap: wrap; }
  .header-actions { align-items: center; }
  .phone { font-size: clamp(16px, 2vw, 20px); }
  .hero-visual { opacity: .58; width: 62vw; right: -68px; top: 118px; }
  .hero-copy { max-width: 660px; }
  h1 { max-width: 660px; font-size: clamp(34px, 4.9vw, 45px); }
  .search-panel { grid-template-columns: 1fr 1fr; }
  .segments { grid-template-columns: repeat(2, 1fr); }
  .catalog, .benefits { grid-template-columns: 1fr 1fr; }
  .favorite-card { grid-template-columns: 120px 1fr; }
  .favorite-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .lead { grid-template-columns: 1fr; }
  .lead-story { min-height: 320px; }
  .lead-form { margin: 18px; }
  .modal-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header, .section { width: min(100% - 28px, 1180px); }
  .site-header { min-height: auto; gap: 14px; padding-top: 14px; }
  .main-nav { width: 100%; justify-content: space-between; gap: 8px; font-size: 13px; flex-wrap: wrap; }
  .header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header-contacts {
    justify-items: start;
    gap: 3px;
  }
  .header-actions .socials { margin-left: 10px; gap: 6px; }
  .social { width: 30px; height: 30px; }
  .phone { font-size: 16px; }
  .section { margin-top: 48px; }
  h1 { font-size: 30px; line-height: 1.12; }
  .hero { min-height: auto; }
  .hero-copy { padding-top: 0; }
  .hero-copy p { font-size: 15px; line-height: 1.5; }
  .brand img, .site-header .brand img, .footer-logo img { width: 104px; }
  .brand-text { font-size: 18px; }
  .segments img { width: 68px; height: 68px; }
  .benefits img { width: 40px; height: 40px; }
  .hero-visual { position: relative; right: auto; top: auto; width: 100%; height: 220px; margin-top: 28px; border-radius: 14px; mask-image: none; opacity: 1; }
  .hero-visual::before { background: linear-gradient(180deg, rgba(230, 243, 255, 0.16), rgba(211, 236, 222, 0.34)); }
  .search-panel { grid-template-columns: 1fr; margin-top: 18px; padding: 16px; gap: 12px; }
  .search-panel label { font-size: 12px; }
  .search-panel .btn { min-height: 44px; font-size: 17px; }
  .segments, .catalog, .benefits { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; }
  .catalog-toggle { font-size: 16px; }
  .favorites-section { padding: 20px; }
  .favorite-card { grid-template-columns: 1fr; }
  .favorite-card img { width: 100%; height: 170px; }
  .favorite-actions { grid-template-columns: 1fr; min-width: 0; }
  .photo { height: 170px; }
  .card-body { padding: 16px; }
  .card-body strong { font-size: 26px; line-height: 1.15; }
  .card-body small { display: block; margin: 6px 0 0; }
  .hook { flex-direction: column; align-items: stretch; padding: 26px; }
  .lead { border-radius: 14px; }
  .lead-story { min-height: 300px; padding: 24px; }
  .lead-story-copy h2 { font-size: 34px; line-height: 1.05; }
  .lead-story-copy p { font-size: 15px; }
  .lead-story-copy ul { gap: 8px; }
  .lead-form { grid-template-columns: 1fr; margin: 12px; padding: 16px; gap: 10px; }
  .lead-form h2 { font-size: 34px; line-height: 1.05; }
  .lead-form p { margin: 6px 0; font-size: 14px; }
  .lead-form input, .lead-form select, .lead-form .btn { min-height: 44px; }
  .hook .btn, .search-panel .btn { width: 100%; }
  .float-actions { right: 16px; bottom: 18px; }
  footer { flex-direction: column; align-items: flex-start; padding: 24px 16px; gap: 14px; }
  footer > div { justify-items: start; gap: 10px; }
  footer nav { gap: 18px; font-size: 13px; }
  footer p { text-align: left; font-size: 26px; margin: 0; white-space: normal; }
  .modal-layout { padding: 18px; gap: 18px; }
  .modal-thumbs { grid-template-columns: repeat(3, 1fr); }
  .modal-content { padding: 0; }
}
