.shared-hero {
  background: #29344f;
  color: #fff;
}

.shared-hero-inner {
  width: 1100px;
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
  padding: 42px 0;
  box-sizing: border-box;
}

.shared-product-name {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.shared-product-intro {
  max-width: 590px;
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}

.shared-benefits {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.shared-benefits li {
  position: relative;
  margin: 11px 0;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.6;
}

.shared-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8a16;
}

.shared-hero-actions {
  display: flex;
  gap: 14px;
}

.shared-hero-actions a {
  min-width: 190px;
  padding: 13px 20px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.shared-hero-actions strong,
.shared-hero-actions span {
  display: block;
}

.shared-hero-actions strong {
  font-size: 18px;
}

.shared-hero-actions span {
  margin-top: 3px;
  font-size: 12px;
}

.shared-download { background: #087ff5; }
.shared-buy { background: #ff691d; }
.shared-download:hover { background: #0068d8; color: #fff; }
.shared-buy:hover { background: #e9560e; color: #fff; }

.shared-visual {
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shared-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}

.shared-layout {
  width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 56px;
  padding: 58px 0 70px;
}

.shared-main {
  min-width: 0;
  color: #163654;
  font-size: 16px;
  line-height: 1.75;
}

.shared-heading {
  margin-bottom: 32px;
}

.shared-heading span {
  color: #087ff5;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.shared-main h1,
.shared-main h2,
.shared-main h3,
.shared-sidebar h2 {
  color: #082f53;
  letter-spacing: 0;
}

.shared-main h1 {
  margin: 8px 0 14px;
  font-size: 40px;
  line-height: 1.2;
}

.shared-main h2 {
  margin: 48px 0 12px;
  font-size: 29px;
  line-height: 1.3;
}

.shared-main h3 {
  margin: 28px 0 8px;
  font-size: 21px;
  line-height: 1.4;
}

.shared-main p { margin: 0 0 16px; }
.shared-main a { color: #006de5; }

.section-rule {
  width: 100%;
  height: 1px;
  margin: 0 0 22px;
  background: #d8e3ed;
}

.section-rule::before {
  content: "";
  display: block;
  width: 112px;
  height: 2px;
  background: #087ff5;
}

.quick-answer {
  padding: 22px 24px;
  background: #f1f7fc;
  border-left: 4px solid #087ff5;
}

.quick-answer strong { color: #082f53; }

.method-card {
  margin: 22px 0;
  padding: 24px;
  border: 1px solid #dbe6ef;
  border-radius: 6px;
  background: #fff;
}

.step-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: shared-step;
}

.step-list li {
  position: relative;
  min-height: 34px;
  margin: 0 0 15px;
  padding-left: 50px;
  counter-increment: shared-step;
}

.step-list li::before {
  content: counter(shared-step);
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9f4ff;
  color: #006fdf;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}

.interface-figure {
  margin: 24px 0;
  padding: 14px;
  background: #f4f8fb;
}

.interface-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.interface-figure figcaption {
  padding: 12px 4px 2px;
  color: #4d6880;
  font-size: 14px;
  line-height: 1.55;
}

.comparison-wrap {
  overflow-x: auto;
  margin-top: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 12px;
  border: 1px solid #d9e4ed;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #eef6fc;
  color: #082f53;
}

.issue-grid,
.check-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.issue-card,
.check-card,
.faq-card {
  padding: 20px;
  border-radius: 6px;
  background: #f5f8fb;
}

.issue-card h3,
.check-card h3,
.faq-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.issue-card p,
.check-card p,
.faq-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.shared-sidebar {
  align-self: start;
  position: sticky;
  top: 22px;
}

.sidebar-box {
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid #dce7ef;
  background: #fff;
}

.sidebar-box h2 {
  margin: 0 0 15px;
  font-size: 20px;
}

.sidebar-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-box li {
  border-top: 1px solid #e8eef3;
}

.sidebar-box li:first-child { border-top: 0; }

.sidebar-box a {
  display: block;
  padding: 10px 0;
  color: #26516f;
  text-decoration: none;
  line-height: 1.45;
}

.sidebar-box a:hover,
.sidebar-box a.active {
  color: #006fdf;
}

.sidebar-note {
  background: #0f4762;
  color: #fff;
}

.sidebar-note h2 { color: #fff; }
.sidebar-note p { margin: 0; line-height: 1.65; }

.shared-cta {
  background: #123f58;
  color: #fff;
  text-align: center;
}

.shared-cta-inner {
  width: 1000px;
  margin: 0 auto;
  padding: 48px 0;
}

.shared-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 29px;
}

.shared-cta p {
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.7;
}

.shared-cta a {
  display: inline-block;
  margin: 0 6px;
  padding: 13px 24px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.shared-cta .primary { background: #ff691d; }
.shared-cta .secondary { border: 1px solid rgba(255,255,255,.55); }

@media (max-width: 1140px) {
  .shared-hero-inner,
  .shared-layout {
    width: auto;
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media (max-width: 820px) {
  .shared-hero-inner,
  .shared-layout {
    grid-template-columns: 1fr;
  }

  .shared-hero-inner {
    gap: 24px;
    padding-top: 34px;
  }

  .shared-visual {
    min-height: 0;
  }

  .shared-layout {
    gap: 32px;
    padding-top: 40px;
  }

  .shared-sidebar {
    position: static;
  }

  .shared-main h1 {
    font-size: 34px;
  }

  .shared-cta-inner {
    width: auto;
    padding-left: 6%;
    padding-right: 6%;
  }
}

@media (max-width: 560px) {
  .shared-hero-actions,
  .issue-grid,
  .check-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .shared-hero-actions a {
    width: 100%;
  }

  .shared-product-name {
    font-size: 26px;
  }

  .shared-main h1 {
    font-size: 30px;
  }
}
