:root {
  --blue-950: #06305d;
  --blue-900: #073f79;
  --blue-800: #0758a6;
  --blue-700: #1167b9;
  --red-700: #c82710;
  --red-600: #df3419;
  --ink: #101827;
  --muted: #5c697a;
  --line: #dfe6ef;
  --soft: #f5f8fc;
  --panel: #ffffff;
  --success: #16834b;
  --shadow: 0 18px 45px rgba(7, 45, 86, 0.12);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--blue-900);
  color: #fff;
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(360px, 470px) 1fr;
  height: 92px;
  background: linear-gradient(90deg, #fff 0 28%, var(--blue-900) 28% 100%);
  box-shadow: 0 2px 16px rgba(0, 31, 61, 0.15);
}

.brand-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: clamp(24px, 4vw, 76px);
  background: #fff;
  clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 100%, 0 100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand strong,
.footer-logo strong {
  display: block;
  color: #101827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small,
.footer-logo small {
  display: block;
  margin-top: 4px;
  color: #536171;
  font-size: 12px;
  font-weight: 700;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 32px);
  min-width: 0;
  padding: 0 clamp(24px, 4vw, 76px) 0 24px;
  color: #fff;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 46px);
  height: 100%;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 0;
  height: 3px;
  background: var(--red-600);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 30px;
}

.header-quote,
.primary-button,
.secondary-button,
.outline-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-quote,
.primary-button {
  padding: 0 28px;
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 12px 24px rgba(200, 39, 16, 0.24);
}

.header-quote {
  min-height: 44px;
  white-space: nowrap;
}

.primary-button:hover,
.header-quote:hover {
  background: var(--red-700);
  transform: translateY(-1px);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 21px;
}

.header-phone:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(5, 41, 76, 0.9) 0%, rgba(5, 48, 91, 0.7) 34%, rgba(5, 48, 91, 0.1) 68%),
    url("./assets/hero-plant-clean.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-content {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0 0 34px;
  padding: 0 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 900;
}

.hero h1 span {
  display: inline;
}

.hero h2 {
  margin: 24px 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  font-weight: 850;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 19px;
  line-height: 1.9;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.ghost-button {
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.metrics-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 35px rgba(5, 45, 86, 0.08);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.metric-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 30px 22px;
}

.metric-item + .metric-item {
  border-left: 1px solid var(--line);
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eef4fb;
  color: var(--blue-800);
  font-size: 25px;
}

.metric-item strong {
  display: block;
  color: #0b2751;
  font-size: 42px;
  line-height: 1;
  font-weight: 850;
}

.metric-item strong small {
  font-size: 18px;
  font-weight: 800;
}

.metric-item p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding: 74px 0;
}

.section-grid,
.news-layout,
.section-heading {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(44px, 6vw, 80px);
  align-items: center;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.copy-block h2,
.section-heading h2,
.contact-band h2,
.modal-panel h2 {
  position: relative;
  margin: 0;
  color: #0f1724;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.2;
  font-weight: 900;
}

.copy-block h2::after,
.section-heading h2::after,
.modal-panel h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 16px;
  background: var(--red-600);
  border-radius: 999px;
}

.lead {
  max-width: 590px;
  margin: 28px 0 30px;
  color: #263243;
  font-size: 17px;
  line-height: 1.95;
  font-weight: 600;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 34px 0;
}

.feature-row article {
  min-width: 0;
}

.feature-row i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #eef5fd;
  color: var(--blue-800);
  font-size: 16px;
}

.feature-row h3 {
  margin: 0 0 6px;
  color: var(--blue-900);
  font-size: 16px;
  font-weight: 850;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.secondary-button {
  padding: 0 24px;
  background: var(--blue-900);
  color: #fff;
  box-shadow: 0 12px 22px rgba(7, 63, 121, 0.18);
}

.secondary-button:hover {
  background: var(--blue-800);
  transform: translateY(-1px);
}

.secondary-button.compact {
  min-height: 43px;
  padding: 0 20px;
  font-size: 14px;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.price-section {
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

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

.section-heading.aligned-left {
  width: 100%;
  margin-bottom: 22px;
}

.segmented-control,
.news-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border-radius: 6px;
  background: #eef3f9;
}

.range-tab,
.news-tab {
  min-width: 74px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #4e5d70;
  font-size: 14px;
  font-weight: 800;
}

.range-tab.active,
.news-tab.active {
  background: var(--blue-900);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7, 63, 121, 0.2);
}

.price-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-summary {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.product-label {
  display: block;
  color: #1c2837;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.4;
}

.price-summary small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.price-summary strong {
  display: block;
  margin: 34px 0 8px;
  color: var(--blue-900);
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.price-summary p {
  margin: 0 0 30px;
  color: var(--muted);
  font-weight: 700;
}

.down {
  color: var(--success);
}

.up {
  color: var(--red-600);
}

.chart-wrap {
  min-width: 0;
  padding: 30px 32px 22px;
}

#priceChart {
  width: 100%;
  height: 330px;
  cursor: crosshair;
  touch-action: none;
  outline: none;
}

#priceChart:focus-visible {
  box-shadow: 0 0 0 3px rgba(7, 88, 166, 0.18);
  border-radius: 6px;
}

.chart-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #8a96a5;
  font-size: 12px;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(44px, 6vw, 78px);
  align-items: end;
}

.news-tabs {
  flex-wrap: wrap;
  margin-bottom: 0;
}

.news-list {
  overflow: hidden;
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
}

.news-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 18px;
  align-items: start;
  gap: 14px;
  width: 100%;
  min-height: 82px;
  padding: 15px 18px;
  border: 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: #253246;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background 0.16s ease;
}

.news-item:hover,
.news-item:focus-visible {
  background: #f7faff;
}

.news-item:focus-visible {
  outline: 3px solid rgba(7, 88, 166, 0.18);
  outline-offset: -3px;
}

.news-item > i {
  align-self: center;
  color: #8a96a5;
  font-size: 16px;
}

.news-date {
  padding-top: 2px;
  color: #66778b;
  font-variant-numeric: tabular-nums;
}

.news-title {
  display: block;
  min-width: 0;
  overflow: hidden;
  font-weight: 700;
}

.news-title > span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-title small {
  display: block;
  margin-top: 6px;
  color: #66778b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.analysis-modal-panel {
  width: min(860px, 100%);
}

.analysis-modal-body {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.analysis-modal-body p {
  margin: 0;
  color: #314154;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
}

.analysis-modal-body .analysis-summary {
  padding: 16px 18px;
  border-left: 4px solid var(--red-600);
  background: #f7faff;
  color: var(--blue-900);
  font-weight: 800;
}

.outline-button {
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid #cbd7e6;
  background: #fff;
  color: var(--blue-900);
}

.outline-button:hover {
  border-color: var(--blue-800);
  background: #f6faff;
}

.news-image img {
  min-height: 370px;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 38px max(48px, calc((100vw - 1220px) / 2));
  background: linear-gradient(100deg, var(--blue-900), var(--blue-800));
  color: #fff;
}

.contact-band h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
}

.contact-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-size: 30px;
}

.contact-phone strong,
.contact-phone small {
  display: block;
}

.contact-phone strong {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 850;
}

.contact-phone small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.site-footer {
  background: linear-gradient(180deg, #073a72, #032a52);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(130px, 0.7fr) minmax(150px, 0.75fr) minmax(230px, 1fr);
  column-gap: clamp(48px, 5.2vw, 86px);
  align-items: start;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
}

.footer-logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-logo strong {
  color: #fff;
  font-size: 17px;
}

.footer-logo small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
}

.footer-brand p,
.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 16px;
}

.footer-grid h3 {
  margin: 0 0 18px;
  min-height: 58px;
  display: flex;
  align-items: center;
  font-size: 17px;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  font-size: 14px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid p {
  margin: 8px 0;
  font-size: 14px;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-row a,
.social-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  vertical-align: top;
}

.social-row button {
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}

.social-row i {
  display: block;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 28px;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 19, 39, 0.58);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.modal-panel.wide {
  width: min(780px, 100%);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef3f9;
  color: #263243;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

label {
  display: grid;
  gap: 8px;
  color: #263243;
  font-size: 14px;
  font-weight: 800;
}

label.full,
.primary-button.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd7e6;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  outline: 0;
}

input,
select {
  height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-800);
  box-shadow: 0 0 0 3px rgba(17, 103, 185, 0.14);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--red-600);
  font-weight: 700;
}

.form-message.success {
  color: var(--success);
}

.data-grid {
  display: grid;
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.data-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.data-row:first-child {
  border-top: 0;
  background: #f5f8fc;
  font-weight: 850;
}

.modal-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-900);
  color: #fff;
  box-shadow: 0 12px 25px rgba(7, 63, 121, 0.24);
}

.back-to-top.show {
  display: inline-flex;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: minmax(310px, 390px) 1fr;
  }

  .brand strong {
    font-size: 19px;
  }

  .primary-nav {
    gap: 22px;
  }

  .header-phone {
    display: none;
  }

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

  .metric-item:nth-child(3) {
    border-left: 0;
  }

  .section-grid,
  .news-layout {
    grid-template-columns: 1fr;
  }

  .image-panel img {
    min-height: 360px;
  }

  .contact-band {
    grid-template-columns: 1fr auto;
  }

  .contact-phone {
    grid-column: 1 / -1;
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    height: auto;
    background: var(--blue-900);
  }

  .brand-panel {
    min-height: 76px;
    padding: 0 20px;
    clip-path: none;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    font-size: 18px;
  }

  .nav-shell {
    justify-content: space-between;
    padding: 12px 20px;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .primary-nav {
    position: absolute;
    top: 132px;
    left: 0;
    right: 0;
    display: none;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: var(--blue-900);
    box-shadow: 0 18px 28px rgba(0, 31, 61, 0.18);
  }

  .primary-nav.open {
    display: flex;
  }

  .nav-link {
    height: 44px;
  }

  .nav-link::after {
    left: 0;
    bottom: 4px;
    transform: none;
  }

  .header-quote {
    min-height: 40px;
    padding: 0 18px;
  }

  .hero {
    min-height: 560px;
    background-position: 60% center;
  }

  .metrics-grid,
  .price-panel,
  .contact-band,
  .footer-grid,
  form {
    grid-template-columns: 1fr;
  }

  .metric-item,
  .metric-item + .metric-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .metric-item:first-child {
    border-top: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .price-summary {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .chart-foot,
  .footer-bottom {
    flex-direction: column;
  }

  .contact-band {
    padding: 34px 24px;
  }

  .contact-phone {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-content,
  .metrics-grid,
  .section-grid,
  .news-layout,
  .section-heading,
  .price-panel,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 32px, 1220px);
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    padding: 54px 0 70px;
  }

  .eyebrow {
    min-height: 36px;
    margin-bottom: 24px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero h1 span {
    display: block;
  }

  .hero h2 {
    font-size: 26px;
  }

  .hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .section {
    padding: 54px 0;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 54px 1fr;
    gap: 10px;
    min-height: 92px;
    padding: 13px 12px;
  }

  .news-title {
    font-size: 14px;
  }

  .news-title small {
    font-size: 12px;
    line-height: 1.45;
  }

  .modal-panel {
    padding: 28px 20px;
  }

  .data-row {
    grid-template-columns: 1fr;
  }
}
