/* Core page conversion and GEO content modules. */
.core-section {
  width: 100%;
  box-sizing: border-box;
  padding: 46px 0;
  background: #fff;
}

.core-section.alt {
  background: #f6f9fc;
}

.core-inner {
  width: 1180px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.core-kicker {
  margin: 0 0 8px;
  color: #1f7acb;
  font-size: 15px;
  font-weight: 700;
}

.core-title {
  margin: 0 0 14px;
  color: #17233d;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
}

.core-lead {
  max-width: 860px;
  margin: 0 0 24px;
  color: #4b5870;
  font-size: 17px;
  line-height: 1.8;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.core-card {
  box-sizing: border-box;
  min-height: 128px;
  padding: 20px;
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  background: #fff;
}

.core-card h3,
.core-card h4 {
  margin: 0 0 10px;
  color: #17233d;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.core-card p,
.core-card li {
  margin: 0;
  color: #526176;
  font-size: 15px;
  line-height: 1.75;
}

.core-card ul {
  margin: 0;
  padding-left: 18px;
}

.core-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.core-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 42px;
  box-sizing: border-box;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid #1f7acb;
  background: #1f7acb;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
}

.core-btn.secondary {
  background: #fff;
  color: #1f7acb !important;
}

.core-btn.dark {
  border-color: #17233d;
  background: #17233d;
}

.core-proof {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.core-proof img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  background: #fff;
}

.core-steps {
  counter-reset: core-step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.core-step {
  position: relative;
  min-height: 118px;
  padding: 18px;
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  background: #fff;
}

.core-step:before {
  counter-increment: core-step;
  content: counter(core-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #1f7acb;
  color: #fff;
  font-weight: 700;
}

.core-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.core-faq-item {
  padding: 18px;
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  background: #fff;
}

.core-faq-item h3 {
  margin: 0 0 8px;
  color: #17233d;
  font-size: 17px;
  line-height: 1.45;
}

.core-faq-item p {
  margin: 0;
  color: #526176;
  font-size: 15px;
  line-height: 1.75;
}

.core-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content7,
.contenta,
.rightbar {
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .content7,
  .contenta,
  .rightbar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .content7 table,
  .contenta table,
  .rightbar table {
    min-width: 720px;
  }
}

.core-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid #1f7acb;
  background: #eef6fd;
  color: #42536a;
  font-size: 14px;
  line-height: 1.7;
}

.core-shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.core-shot {
  border: 1px solid #dbe4ef;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.core-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.core-shot div {
  padding: 14px;
}

.core-shot h3 {
  margin: 0 0 8px;
  color: #17233d;
  font-size: 17px;
}

.core-shot p {
  margin: 0;
  color: #526176;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .core-grid,
  .core-grid.three,
  .core-proof,
  .core-steps,
  .core-faq,
  .core-shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .core-section {
    padding: 34px 0;
  }

  .core-inner {
    max-width: calc(100% - 24px);
  }

  .core-title {
    font-size: 24px;
  }

  .core-lead {
    font-size: 15px;
  }

  .core-grid,
  .core-grid.three,
  .core-proof,
  .core-steps,
  .core-faq,
  .core-shot-grid {
    grid-template-columns: 1fr;
  }

  .core-cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

/* Business redesign layer for core conversion pages. */
:root {
  --core-navy: #0b1b33;
  --core-navy-2: #102a4d;
  --core-blue: #1f7acb;
  --core-blue-dark: #155f9f;
  --core-gold: #d9a441;
  --core-ink: #17233d;
  --core-text: #526176;
  --core-border: #dbe4ef;
  --core-soft: #f5f8fc;
}

.core-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding: 70px 0;
  background: radial-gradient(circle at 80% 20%, rgba(31, 122, 203, 0.32), transparent 34%),
    linear-gradient(135deg, var(--core-navy) 0%, var(--core-navy-2) 54%, #0d3f70 100%);
  color: #fff;
}

.core-hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.core-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 42px;
  align-items: center;
  width: 1180px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.core-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 16px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #c9e4ff;
  font-size: 14px;
  font-weight: 700;
}

.core-hero h1,
.core-hero-title {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}

.core-hero-lead {
  max-width: 660px;
  margin: 20px 0 0;
  color: #d7e6f5;
  font-size: 18px;
  line-height: 1.85;
}

.core-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.core-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #f5fbff;
  font-size: 14px;
}

.core-hero .core-cta-row {
  margin-top: 28px;
}

.core-hero .core-btn {
  min-height: 46px;
  border-color: #e9b95b;
  background: linear-gradient(180deg, #f0c36b 0%, var(--core-gold) 100%);
  color: #17233d !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.core-hero .core-btn.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  box-shadow: none;
}

.core-hero .core-btn.dark {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #d7e6f5 !important;
  box-shadow: none;
}

.core-hero-visual {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.core-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #fff;
}

.core-hero-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.core-hero-panel h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 20px;
}

.core-hero-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.core-hero-list li {
  padding-left: 14px;
  border-left: 3px solid var(--core-gold);
  color: #d7e6f5;
  font-size: 15px;
  line-height: 1.65;
}

.core-section {
  padding: 58px 0;
}

.core-section.alt {
  background: var(--core-soft);
}

.core-kicker {
  color: var(--core-blue);
  letter-spacing: 0;
}

.core-title {
  color: var(--core-ink);
  font-size: 32px;
}

.core-lead {
  color: var(--core-text);
}

.core-card,
.core-faq-item,
.core-step,
.core-shot {
  border-color: var(--core-border);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(15, 35, 64, 0.06);
}

.core-card {
  min-height: 142px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.core-card:hover {
  transform: translateY(-2px);
  border-color: #b9d4ec;
  box-shadow: 0 18px 38px rgba(15, 35, 64, 0.1);
}

.core-card h3 a {
  color: var(--core-ink);
  text-decoration: none;
}

.core-card h3 a:hover {
  color: var(--core-blue);
}

.core-btn {
  min-height: 44px;
  border-radius: 4px;
  background: var(--core-blue);
  border-color: var(--core-blue);
}

.core-btn:hover {
  background: var(--core-blue-dark);
  border-color: var(--core-blue-dark);
}

.core-btn.secondary:hover {
  background: #eef6fd;
}

.core-shot img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Tone down legacy core-page visuals so the redesign reads as one system. */
.buy-banner,
.wap-buy-banner,
.case-banner,
.wap-case-banner {
  display: none !important;
}

.download,
.wap_download {
  display: none !important;
}

.index-heard {
  height: auto !important;
  min-height: 88px;
  background: var(--core-navy) !important;
}

.index-heard > .main:first-child {
  min-height: 88px;
}

.index-heard > .main:first-child:after {
  content: "";
  display: block;
  clear: both;
}

.index-heard .menu {
  margin-left: 22px;
}

.index-heard .menu li {
  padding-left: 10px;
  padding-right: 10px;
}

.index-heard > .main:nth-of-type(2),
.index-heard .slides-section {
  display: none !important;
}

.index-heard .tel {
  box-sizing: border-box;
  width: auto !important;
  min-width: 198px;
  height: auto !important;
  margin-top: 25px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f5fbff;
  font-size: 14px !important;
  font-weight: 700;
  line-height: 1.4;
  text-indent: 0 !important;
}

.index-heard .banner,
.index-heard .download,
.index-heard .downloads,
.index-heard .des {
  display: none !important;
}

.home-v2 .function,
.home-v2 .reason,
.home-v2 .wap_reason,
.home-v2 .pk,
.home-v2 .comment,
.home-v2 .article {
  display: none !important;
}

.home-hero-v2 {
  min-height: 650px;
  padding: 0;
  background: #07182d;
}

.home-hero-v2 .home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 45, 0.98) 0%, rgba(7, 24, 45, 0.9) 36%, rgba(7, 24, 45, 0.38) 72%, rgba(7, 24, 45, 0.62) 100%),
    url("../images/home-hero-command-center-v2.png") center right / cover no-repeat;
}

.home-hero-v2-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: 58px;
  align-items: center;
  width: 1180px;
  max-width: calc(100% - 32px);
  min-height: 650px;
  margin: 0 auto;
}

.home-hero-copy {
  max-width: 680px;
}

.home-hero-v2 h1 {
  max-width: 680px;
  font-size: 54px;
  line-height: 1.13;
}

.home-hero-v2 .core-hero-lead {
  max-width: 650px;
  color: #dcecff;
  font-size: 19px;
}

.home-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ecf7ff;
  font-size: 14px;
}

.home-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.home-hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.home-hero-metrics strong,
.home-hero-metrics span {
  display: block;
}

.home-hero-metrics strong {
  color: #f2bd62;
  font-size: 28px;
  line-height: 1;
}

.home-hero-metrics span {
  margin-top: 8px;
  color: #bfd4ea;
  font-size: 13px;
}

.home-command-card {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.home-command-card:before {
  content: "";
  position: absolute;
  inset: -28px 42px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 189, 98, 0.85), transparent);
}

.home-command-card img {
  display: block;
  width: 100%;
  border-radius: 7px;
  background: #fff;
}

.home-command-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.home-command-strip span {
  min-height: 34px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #dcecff;
  font-size: 13px;
  line-height: 34px;
  text-align: center;
}

.home-v2-main {
  width: 100%;
  background: #fff;
}

.home-v2-inner {
  width: 1180px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.home-section-head {
  max-width: 860px;
  margin-bottom: 30px;
}

.home-section-head p,
.home-eyebrow {
  margin: 0 0 10px;
  color: var(--core-blue);
  font-size: 15px;
  font-weight: 800;
}

.home-section-head h2,
.home-proof-layout h2,
.home-route-panel h2 {
  margin: 0;
  color: var(--core-ink);
  font-size: 34px;
  line-height: 1.32;
  font-weight: 800;
}

.home-decision,
.home-tech,
.home-route {
  padding: 68px 0;
}

.home-decision {
  background: #f6f9fc;
}

.home-decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-decision-card,
.home-tech-grid > div {
  min-height: 230px;
  box-sizing: border-box;
  padding: 26px;
  border: 1px solid var(--core-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 35, 64, 0.07);
}

.home-decision-card span {
  color: #c39136;
  font-size: 14px;
  font-weight: 800;
}

.home-decision-card h3,
.home-tech-grid h3 {
  margin: 12px 0 10px;
  color: var(--core-ink);
  font-size: 21px;
  line-height: 1.4;
}

.home-decision-card p,
.home-tech-grid p,
.home-proof-layout p {
  margin: 0;
  color: var(--core-text);
  font-size: 15px;
  line-height: 1.8;
}

.home-proof-band {
  padding: 72px 0;
  background: #fff;
}

.home-proof-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 46px;
  align-items: center;
}

.home-proof-layout h2 {
  margin-bottom: 16px;
}

.home-proof-stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: stretch;
}

.home-proof-stack img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  object-fit: cover;
  border: 1px solid var(--core-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 35, 64, 0.1);
}

.home-proof-stack img:first-child {
  grid-row: span 2;
}

.home-tech {
  background:
    linear-gradient(180deg, rgba(7, 24, 45, 0.96), rgba(13, 43, 78, 0.96)),
    url("../images/home-hero-command-center-v2.png") center / cover no-repeat;
}

.home-tech .home-section-head h2 {
  color: #fff;
}

.home-tech .home-section-head p {
  color: #f2bd62;
}

.home-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-tech-grid > div {
  min-height: 250px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-tech-grid h3 {
  color: #fff;
}

.home-tech-grid p {
  color: #d6e7f8;
}

.home-route {
  background: #f6f9fc;
}

.home-route-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--core-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 35, 64, 0.08);
}

.home-route-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-route-links a {
  min-height: 46px;
  border: 1px solid #c9d9e8;
  border-radius: 5px;
  color: var(--core-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 46px;
  text-align: center;
  text-decoration: none;
}

.home-route-links a:hover {
  border-color: var(--core-blue);
  color: var(--core-blue);
}

.main-buy .edition,
.case .case-itme,
.updatelog .log-itme {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 35, 64, 0.06);
}

.main-buy .edition h1,
.case-itme h1,
.various h3 {
  color: var(--core-ink) !important;
  letter-spacing: 0;
}

.edition li {
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 35, 64, 0.08);
}

.edition li h2 {
  background: linear-gradient(135deg, var(--core-navy-2), var(--core-blue)) !important;
}

.edition li h2 span {
  background: var(--core-gold) !important;
  color: var(--core-ink) !important;
}

.edition .bnt {
  border-radius: 4px !important;
}

.case-img li {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 35, 64, 0.08);
}

.case-img li img {
  display: block;
  width: 100%;
}

.case-img .font {
  background: rgba(11, 27, 51, 0.88) !important;
}

.updatelog .log-itme {
  margin-bottom: 18px;
  padding: 22px;
}

@media (min-width: 761px) {
  .function {
    padding: 54px 0 62px !important;
  }

  .function h1 {
    float: none !important;
    background: none !important;
    color: var(--core-ink);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .function > p {
    max-width: 820px;
    margin: 10px auto 0;
    color: var(--core-text);
    font-size: 15px;
    line-height: 1.75;
  }

  .function ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100% !important;
    float: none !important;
    margin-top: 34px !important;
  }

  .function ul li {
    box-sizing: border-box;
    width: auto !important;
    height: 252px;
    margin: 0 !important;
    padding: 28px 22px !important;
    border: 1px solid var(--core-border);
    border-radius: 8px;
    background: #fff !important;
    box-shadow: 0 12px 30px rgba(15, 35, 64, 0.06);
  }

  .function ul li i {
    text-align: center;
  }

  .function ul li i img {
    margin-left: auto !important;
    margin-right: auto;
  }

  .function ul li strong {
    color: var(--core-ink);
  }

  .function ul li p {
    color: var(--core-text);
    font-size: 14px;
    line-height: 1.65;
  }

  .main-buy {
    width: 1180px !important;
    max-width: calc(100% - 32px) !important;
  }

  .edition ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    width: 100% !important;
    float: none !important;
  }

  .edition ul li,
  .edition ul li.b2,
  .edition ul li.b3,
  .edition ul li.b4 {
    width: auto !important;
    margin-right: 0 !important;
    float: none !important;
  }

  .edition ul li h2 {
    font-size: 34px;
  }

  .edition ul li h2 span {
    left: auto !important;
    right: 18px;
  }

  .edition ul li dl .bnt {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .various,
  .various .box,
  .service_table {
    max-width: 100%;
    overflow-x: hidden;
  }

  .service_table .st_head,
  #nav_keleyi_com {
    width: 100% !important;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .wap-index-heard .wp_banner {
    display: none !important;
  }

  .home-hero-v2 {
    min-height: auto;
  }

  .home-hero-v2 .home-hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 24, 45, 0.98) 0%, rgba(7, 24, 45, 0.9) 62%, rgba(7, 24, 45, 0.98) 100%),
      url("../images/home-hero-command-center-v2.png") center top / cover no-repeat;
  }

  .home-hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    max-width: calc(100% - 24px);
    padding: 42px 0 38px;
  }

  .home-hero-v2 h1 {
    font-size: 34px;
    line-height: 1.22;
  }

  .home-hero-v2 .core-hero-lead {
    font-size: 15px;
  }

  .home-hero-proof {
    gap: 8px;
  }

  .home-hero-proof span {
    min-height: 28px;
    font-size: 13px;
  }

  .home-hero-metrics,
  .home-decision-grid,
  .home-proof-layout,
  .home-tech-grid,
  .home-route-panel,
  .home-route-links {
    grid-template-columns: 1fr;
  }

  .home-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .home-hero-metrics div {
    padding: 10px 8px;
  }

  .home-hero-metrics strong {
    font-size: 22px;
  }

  .home-hero-metrics span {
    font-size: 12px;
  }

  .home-command-card {
    padding: 8px;
  }

  .home-command-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .home-command-strip span {
    min-height: 30px;
    font-size: 12px;
    line-height: 30px;
  }

  .home-v2-inner {
    max-width: calc(100% - 24px);
  }

  .home-decision,
  .home-proof-band,
  .home-tech,
  .home-route {
    padding: 42px 0;
  }

  .home-section-head {
    margin-bottom: 22px;
  }

  .home-section-head h2,
  .home-proof-layout h2,
  .home-route-panel h2 {
    font-size: 24px;
  }

  .home-decision-card,
  .home-tech-grid > div {
    min-height: auto;
    padding: 20px;
  }

  .home-proof-stack {
    grid-template-columns: 1fr;
  }

  .home-proof-stack img:first-child {
    grid-row: auto;
  }

  .home-route-panel {
    padding: 22px;
  }

  .core-hero {
    padding: 42px 0 36px;
  }

  .core-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: calc(100% - 24px);
  }

  .core-hero h1,
  .core-hero-title {
    font-size: 28px;
    line-height: 1.28;
  }

  .core-hero-lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.75;
  }

  .core-hero-tags {
    gap: 8px;
  }

  .core-hero-tags span {
    min-height: 28px;
    font-size: 13px;
  }

  .core-hero-visual {
    padding: 8px;
  }

  .core-section {
    padding: 40px 0;
  }

  .core-title {
    font-size: 24px;
    line-height: 1.35;
  }

  .core-card {
    min-height: auto;
    padding: 18px;
  }

  .main-buy .edition,
  .case .case-itme,
  .updatelog .log-itme {
    box-shadow: none;
  }

  .intro-about,
  .intro-detailed,
  .intro-detailed-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .intro .main,
  .intro-about .main,
  .intro-detailed .main,
  .intro-about-box {
    width: auto !important;
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box;
  }

  .edition li {
    box-shadow: 0 10px 22px rgba(15, 35, 64, 0.08);
  }
}
