:root {
  --insightbase-font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
}

.release-notice-popup {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 100;
  width: min(440px, calc(100vw - 40px));
  padding: 24px;
  border: 1px solid rgba(28, 163, 58, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px rgba(33, 48, 40, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.release-notice-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.release-notice-popup.is-visible.is-popping {
  animation: release-notice-pop 0.48s cubic-bezier(0.2, 0.9, 0.3, 1.25);
}

@keyframes release-notice-pop {
  0% {
    transform: translateY(18px) scale(0.94);
  }
  58% {
    transform: translateY(-4px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .release-notice-popup {
    transition: none;
  }

  .release-notice-popup.is-visible.is-popping {
    animation: none;
  }
}

.release-notice-popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #697586;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.release-notice-popup__close:hover {
  background: #f1f7f3;
  color: #213028;
}

.release-notice-popup__eyebrow {
  margin: 10px 0 5px;
  color: #1ca33a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.release-notice-popup__campaign-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 18px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #155a9c;
  font-size: 12px;
  font-weight: 800;
}

.release-notice-popup__title {
  margin: 0 0 14px;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
}

.release-notice-popup__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.release-notice-popup__price {
  padding: 10px 12px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #f7fbf8;
}

.release-notice-popup__price span,
.release-notice-popup__price del,
.release-notice-popup__price strong {
  display: block;
}

.release-notice-popup__price span {
  margin-bottom: 2px;
  color: #697586;
  font-size: 11px;
  font-weight: 700;
}

.release-notice-popup__price del {
  margin-bottom: 1px;
  color: #8a94a3;
  font-size: 10px;
  line-height: 1.4;
  text-decoration-color: #d95050;
  text-decoration-thickness: 1px;
}

.release-notice-popup__price strong {
  color: #16872f;
  font-size: 17px;
  line-height: 1.4;
}

.release-notice-popup__price strong small {
  margin-left: 2px;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}

.release-notice-popup__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 8px;
  background: #1ca33a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.release-notice-popup__button:hover {
  background: #16872f;
  color: #fff;
  transform: translateY(-1px);
}

.release-notice-popup__note {
  margin: 9px 0 0;
  color: #697586;
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .release-notice-popup {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    padding: 20px;
  }

  .release-notice-popup__title {
    font-size: 12px;
  }

  .release-notice-popup__price strong {
    font-size: 15px;
  }
}

body,
button,
input,
textarea,
select {
  font-family: var(--insightbase-font-family);
}

.release-campaign-overview {
  width: min(100%, 900px);
  margin: 32px auto 44px;
  padding: 34px;
  border: 1px solid #dce9e0;
  border-radius: 18px;
  background: linear-gradient(145deg, #f7fbf8 0%, #fff 62%);
  box-shadow: 0 16px 42px rgba(33, 48, 40, 0.09);
}

.release-campaign-overview__header {
  text-align: center;
}

.release-campaign-overview__badge {
  display: inline-flex;
  padding: 6px 20px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #155a9c;
  font-size: 13px;
  font-weight: 800;
}

.release-campaign-overview__eyebrow {
  margin: 14px 0 6px;
  color: #16872f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.release-campaign-overview__header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.45;
}

.release-campaign-overview__header > p:last-child {
  margin: 12px auto 0;
  color: #596575;
  font-size: 14px;
  line-height: 1.9;
}

.release-campaign-overview__plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.release-campaign-plan {
  padding: 22px;
  border: 1px solid #dfe8e3;
  border-radius: 12px;
  background: #fff;
}

.release-campaign-plan h3 {
  margin: 0 0 16px;
  color: #213028;
  font-size: 17px;
  text-align: center;
}

.release-campaign-plan__price-row {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr;
  align-items: center;
  gap: 10px;
}

.release-campaign-plan__regular span,
.release-campaign-plan__special span {
  display: block;
  margin-bottom: 4px;
  color: #697586;
  font-size: 10px;
}

.release-campaign-plan__regular del {
  color: #697586;
  font-size: 14px;
  text-decoration-color: #d95050;
}

.release-campaign-plan__arrow {
  color: #9aa5b1;
  font-size: 18px;
}

.release-campaign-plan__special strong {
  color: #16872f;
  font-size: 20px;
  white-space: nowrap;
}

.release-campaign-plan__special small {
  margin-left: 2px;
  font-size: 9px;
}

.release-campaign-plan__saving {
  margin: 14px 0 0;
  padding: 7px 10px;
  border-radius: 6px;
  background: #edf8ef;
  color: #16872f;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.release-campaign-overview__conditions {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 10px;
  background: #f4f6f8;
}

.release-campaign-overview__conditions h3 {
  margin: 0 0 8px;
  color: #213028;
  font-size: 14px;
}

.release-campaign-overview__conditions ul {
  margin: 0;
  padding-left: 1.4em;
}

.release-campaign-overview__conditions li {
  margin-top: 4px;
  color: #596575;
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .release-campaign-overview {
    margin: 24px auto 34px;
    padding: 24px 18px;
  }

  .release-campaign-overview__plans {
    grid-template-columns: 1fr;
  }

  .release-campaign-plan {
    padding: 20px 16px;
  }
}

.report-workload-metric-card__number,
.voice-card::after {
  font-family: var(--insightbase-font-family);
}

body:not(.insightbase-manual) main {
  max-width: none;
  padding: 0;
  overflow-x: hidden;
}

body:not(.insightbase-manual) .hero,
body:not(.insightbase-manual) .section__bg_w,
body:not(.insightbase-manual) .section__bg,
body:not(.insightbase-manual) .section__bg_lgreen,
body:not(.insightbase-manual) .section__bg_lgreen_bottom,
body:not(.insightbase-manual) .section__bg_lblue,
body:not(.insightbase-manual) .section__bg_lblue_bottom {
  width: 100%;
}

body:not(.insightbase-manual) .content__inner,
body:not(.insightbase-manual) .hero__inner {
  width: min(100% - 40px, 1300px);
}

body:not(.insightbase-manual) .hero__inner {
  max-width: 1500px;
}

.site-header .header-inner .brand img,
body:not(.insightbase-manual) .footer__logo img,
.insightbase-manual .site-footer .brand img {
  max-width: 200px;
  height: auto;
  padding: 0;
}

body:not(.insightbase-manual) .site-header .header-inner {
  width: min(100% - 40px, 1300px);
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 1100px) {
  body:not(.insightbase-manual) .site-header .header-inner {
    width: calc(100% - 40px);
  }
}

body:not(.insightbase-manual) .legal-page,
body:not(.insightbase-manual) .legal-page section {
  opacity: 1;
  transform: none;
  transition: none;
}

body:not(.insightbase-manual) .legal-page__meta {
  padding: 0;
}

body:not(.insightbase-manual) .legal-page__table-wrap {
  width: 100%;
  margin: 18px 0 28px;
  overflow-x: auto;
}

body:not(.insightbase-manual) .legal-page__inner table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  line-height: 1.8;
}

body:not(.insightbase-manual) .legal-page__inner th,
body:not(.insightbase-manual) .legal-page__inner td {
  padding: 12px 14px;
  border: 1px solid #dfe8e3;
  vertical-align: top;
  text-align: left;
}

body:not(.insightbase-manual) .legal-page__inner th {
  background: #f4f7f4;
  font-weight: 700;
}

body:not(.insightbase-manual) .google-oauth-scope-table table {
  min-width: 0;
  table-layout: fixed;
}

body:not(.insightbase-manual) .google-oauth-scope-table {
  overflow: visible;
}

body:not(.insightbase-manual) .google-oauth-scope-table th:nth-child(1) {
  width: 31%;
}

body:not(.insightbase-manual) .google-oauth-scope-table th:nth-child(2) {
  width: 27%;
}

body:not(.insightbase-manual) .google-oauth-scope-table code {
  display: inline;
  padding: 2px 5px;
  border-radius: 4px;
  background: #eef3f0;
  color: #183f2a;
  font-size: 14px;
  line-height: 1.7;
  white-space: normal;
  overflow-wrap: anywhere;
  user-select: text;
}

@media (max-width: 767px) {
  body:not(.insightbase-manual) .google-oauth-scope-table {
    overflow: visible;
  }

  body:not(.insightbase-manual) .google-oauth-scope-table table,
  body:not(.insightbase-manual) .google-oauth-scope-table tbody,
  body:not(.insightbase-manual) .google-oauth-scope-table tr,
  body:not(.insightbase-manual) .google-oauth-scope-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  body:not(.insightbase-manual) .google-oauth-scope-table table {
    background: transparent;
  }

  body:not(.insightbase-manual) .google-oauth-scope-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  body:not(.insightbase-manual) .google-oauth-scope-table tr {
    margin-bottom: 16px;
    border: 1px solid #dfe8e3;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
  }

  body:not(.insightbase-manual) .google-oauth-scope-table td {
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid #e8eeea;
  }

  body:not(.insightbase-manual) .google-oauth-scope-table td:last-child {
    border-bottom: 0;
  }

  body:not(.insightbase-manual) .google-oauth-scope-table td::before {
    display: block;
    margin-bottom: 5px;
    color: #52605a;
    font-size: 11px;
    font-weight: 700;
  }

  body:not(.insightbase-manual) .google-oauth-scope-table td:nth-child(1)::before {
    content: "OAuthスコープ";
  }

  body:not(.insightbase-manual) .google-oauth-scope-table td:nth-child(2)::before {
    content: "使用する画面・機能";
  }

  body:not(.insightbase-manual) .google-oauth-scope-table td:nth-child(3)::before {
    content: "必要な理由・より狭いスコープを使用できない理由";
  }

  body:not(.insightbase-manual) .google-oauth-scope-table code {
    font-size: 14px;
  }
}

body:not(.insightbase-manual) .google-data-privacy-link {
  margin-top: 36px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: #f4f9f5;
}

body:not(.insightbase-manual) .legal-page__inner pre {
  margin: 16px 0 24px;
  padding: 18px 20px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #f7f9f7;
  white-space: pre-wrap;
  line-height: 1.9;
}

body:not(.insightbase-manual) .legal-page__inner dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0px 0px;
  margin-top: 25px;
}

body:not(.insightbase-manual) .legal-page__inner dt,
body:not(.insightbase-manual) .legal-page__inner dd {
  padding-top: 28px;
  padding-bottom: 28px;
}

body:not(.insightbase-manual) .legal-page__inner dt {
  padding-right: 8px;
  line-height: 1.8;
}

body:not(.insightbase-manual) .legal-page__inner dd {
  padding-left: 42px;
  line-height: 2.05;
}

body:not(.insightbase-manual) .legal-item-group + .legal-item-group {
  margin-top: 26px;
}

body:not(.insightbase-manual) .legal-item-group strong {
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  body:not(.insightbase-manual) .legal-page__inner dl {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  body:not(.insightbase-manual) .legal-page__inner dt {
    padding: 22px 0 8px;
    border-bottom: 0;
  }

  body:not(.insightbase-manual) .legal-page__inner dd {
    padding: 0 0 22px;
  }
}

body:not(.insightbase-manual) .google-data-legal-note {
  margin: 26px 0 34px;
  padding: 20px 22px;
  border: 1px solid #e1e7ec;
  border-radius: 8px;
  background: #f6f7f8;
}

body:not(.insightbase-manual) .google-data-legal-note p {
  margin: 0;
  padding: 0;
}

body:not(.insightbase-manual) .google-data-legal-contact {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

body:not(.insightbase-manual) .google-data-legal-contact p {
  margin: 0;
  padding: 0;
}

body:not(.insightbase-manual) .pricing-hero__title-accent {
  color: var(--accent);
}

body:not(.insightbase-manual) .pricing-hero__image {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 auto;
  border: 1px solid #dfe8e3;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(33, 48, 40, 0.12);
}

body:not(.insightbase-manual) .inquiry-page {
  padding: 68px 0 112px;
  background: #fff;
  opacity: 1;
  transform: none;
  transition: none;
}

body:not(.insightbase-manual) .inquiry-page__inner {
  max-width: 1020px;
  text-align: center;
}

body:not(.insightbase-manual) .inquiry-page__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body:not(.insightbase-manual) .inquiry-page__lead {
  margin: 0 auto 34px;
  padding: 0;
  color: #334155;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

body:not(.insightbase-manual) .inquiry-thanks-page {
  min-height: 560px;
  padding: 88px 0 120px;
  background: #fff;
  opacity: 1;
  transform: none;
  transition: none;
}

body:not(.insightbase-manual) .inquiry-thanks-page__inner {
  max-width: 860px;
  text-align: center;
}

body:not(.insightbase-manual) .inquiry-thanks-page__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #22ac38;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

body:not(.insightbase-manual) .inquiry-thanks-page__lead {
  margin: 0 auto;
  padding: 0;
  color: #334155;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  text-align: center;
}

body:not(.insightbase-manual) .inquiry-thanks-page__note {
  max-width: 680px;
  margin: 32px auto 0;
  padding: 18px 22px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #f6fbf7;
}

body:not(.insightbase-manual) .inquiry-thanks-page__note p {
  margin: 0;
  padding: 0;
  color: #40524a;
  font-size: 14px;
  line-height: 1.9;
}

body:not(.insightbase-manual) .inquiry-thanks-page__actions {
  width: min(100%, 360px);
  margin: 38px auto 0;
}

body:not(.insightbase-manual) .inquiry-page .wpcf7 {
  margin: 0 auto;
}

body:not(.insightbase-manual) .inquiry-page .wpcf7 form p,
body:not(.insightbase-manual) .inquiry-page .wpcf7 form {
  margin: 0;
  padding: 0;
}

body:not(.insightbase-manual) .ib-contact-form {
  width: 100%;
  color: #0f172a;
  text-align: left;
}

body:not(.insightbase-manual) .ib-contact-table {
  border: 1px solid #d7e1ec;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

body:not(.insightbase-manual) .ib-contact-row {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  border-top: 1px solid #e4ebf2;
}

body:not(.insightbase-manual) .ib-contact-row:first-child {
  border-top: 0;
}

body:not(.insightbase-manual) .ib-contact-label {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 24px 30px;
  background: #f5f7fb;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

body:not(.insightbase-manual) .ib-contact-control {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 22px 30px;
  background: #fff;
}

body:not(.insightbase-manual) .ib-contact-control p,
body:not(.insightbase-manual) .ib-contact-message > p {
  width: 100%;
}

body:not(.insightbase-manual) .ib-contact-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 3px 6px 4px;
  border-radius: 3px;
  background: #f43f6f;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}

body:not(.insightbase-manual) .inquiry-page input[type="text"],
body:not(.insightbase-manual) .inquiry-page input[type="email"],
body:not(.insightbase-manual) .inquiry-page textarea {
  width: 100%;
  border: 1px solid #cfd9e5;
  border-radius: 6px;
  background: #fff;
  color: #1f2937;
  font-size: 18px;
  font-weight: 500;
  box-shadow: none;
}

body:not(.insightbase-manual) .inquiry-page input[type="text"],
body:not(.insightbase-manual) .inquiry-page input[type="email"] {
  height: 62px;
  padding: 0 18px;
}

body:not(.insightbase-manual) .inquiry-page textarea {
  min-height: 320px;
  padding: 20px;
  resize: vertical;
}

body:not(.insightbase-manual) .inquiry-page input::placeholder,
body:not(.insightbase-manual) .inquiry-page textarea::placeholder {
  color: #758293;
  opacity: 1;
}

body:not(.insightbase-manual) .inquiry-page input[type="text"]:focus,
body:not(.insightbase-manual) .inquiry-page input[type="email"]:focus,
body:not(.insightbase-manual) .inquiry-page textarea:focus {
  border-color: #22ac38;
  outline: 3px solid rgba(34, 172, 56, 0.16);
}

body:not(.insightbase-manual) .ib-contact-message {
  margin-top: 42px;
}

body:not(.insightbase-manual) .ib-contact-message-label {
  margin-bottom: 18px;
  color: #0f172a;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

body:not(.insightbase-manual) .ib-contact-checks {
  display: grid;
  gap: 22px;
  width: min(100%, 760px);
  margin: 32px auto 0;
}

body:not(.insightbase-manual) .ib-contact-check label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #253044;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.8;
}

body:not(.insightbase-manual) .ib-contact-check .wpcf7-list-item {
  margin: 0;
}

body:not(.insightbase-manual) .ib-contact-check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid #9aa5b1;
  border-radius: 2px;
  accent-color: #174da3;
}

body:not(.insightbase-manual) .ib-contact-check a {
  color: #0b4ea2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body:not(.insightbase-manual) .ib-contact-submit {
  width: min(100%, 760px);
  margin: 42px auto 0;
}

body:not(.insightbase-manual) .ib-contact-submit p {
  display: block;
}

body:not(.insightbase-manual) .ib-contact-submit .wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
}

body:not(.insightbase-manual) .ib-contact-submit input[type="submit"] {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  min-height: 70px;
  padding: 16px 24px;
  border: 0;
  border-bottom: 5px solid var(--btnbottomgreen);
  border-radius: 8px;
  background: #22ac38;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  box-shadow: none;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

body:not(.insightbase-manual) .ib-contact-submit input[type="submit"]:hover {
  margin-top: 3px;
  border: 1px solid var(--btngreen);
  border-bottom-width: 2px;
  background: #fff;
  color: var(--btngreen);
  transition: 0.2s;
}

body:not(.insightbase-manual) .ib-contact-submit input[type="submit"]:active {
  transform: none;
  box-shadow: none;
}

body:not(.insightbase-manual) .inquiry-page .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #d12d4f;
  font-size: 13px;
  font-weight: 700;
}

body:not(.insightbase-manual) .inquiry-page .wpcf7-response-output {
  width: min(100%, 760px);
  margin: 28px auto 0;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 768px) {
  body:not(.insightbase-manual) .inquiry-page {
    padding: 48px 0 78px;
  }

  body:not(.insightbase-manual) .inquiry-page__inner {
    padding: 0 20px;
  }

  body:not(.insightbase-manual) .inquiry-page__lead {
    margin-bottom: 28px;
    font-size: 16px;
    text-align: left;
  }

  body:not(.insightbase-manual) .ib-contact-row {
    grid-template-columns: 1fr;
  }

  body:not(.insightbase-manual) .ib-contact-label,
  body:not(.insightbase-manual) .ib-contact-control {
    min-height: auto;
    padding: 18px;
  }

  body:not(.insightbase-manual) .ib-contact-label {
    border-bottom: 1px solid #e4ebf2;
    font-size: 16px;
  }

  body:not(.insightbase-manual) .inquiry-page input[type="text"],
  body:not(.insightbase-manual) .inquiry-page input[type="email"] {
    height: 56px;
    font-size: 16px;
  }

  body:not(.insightbase-manual) .inquiry-page textarea {
    min-height: 240px;
    font-size: 16px;
  }

  body:not(.insightbase-manual) .ib-contact-message {
    margin-top: 34px;
  }

  body:not(.insightbase-manual) .ib-contact-message-label {
    font-size: 17px;
  }

  body:not(.insightbase-manual) .ib-contact-checks {
    gap: 18px;
    margin-top: 28px;
  }

  body:not(.insightbase-manual) .ib-contact-check label {
    align-items: flex-start;
    font-size: 14px;
  }

  body:not(.insightbase-manual) .ib-contact-check input[type="checkbox"] {
    margin-top: 3px;
  }

  body:not(.insightbase-manual) .ib-contact-submit {
    margin-top: 34px;
  }

  body:not(.insightbase-manual) .ib-contact-submit input[type="submit"] {
    min-height: 62px;
    font-size: 18px;
  }
}

body:not(.insightbase-manual) .unsubscribe-page,
body:not(.insightbase-manual) .unsubscribe-page section {
  opacity: 1;
  transform: none;
  transition: none;
}

body:not(.insightbase-manual) .unsubscribe-page {
  min-height: 0;
  padding: 70px 0 120px;
  background: #fff;
}

body:not(.insightbase-manual) .unsubscribe-page__inner {
  max-width: 960px;
}

body:not(.insightbase-manual) .unsubscribe-page__title {
  margin: 0 0 32px;
  color: #334155;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

body:not(.insightbase-manual) .unsubscribe-page .wpcf7 {
  margin: 0 auto;
}

body:not(.insightbase-manual) .unsubscribe-page .wpcf7 form,
body:not(.insightbase-manual) .unsubscribe-page .wpcf7 form p {
  margin: 0;
  padding: 0;
}

body:not(.insightbase-manual) .ib-unsubscribe-form {
  width: 100%;
  color: #0f172a;
  text-align: left;
}

body:not(.insightbase-manual) .ib-unsubscribe-lead {
  margin: 0 auto 50px;
  padding: 0;
  color: #334155;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

body:not(.insightbase-manual) .unsubscribe-page .wpcf7 form p.ib-unsubscribe-lead {
  margin: 0 auto 50px;
}

body:not(.insightbase-manual) .ib-unsubscribe-table {
  border: 1px solid #d7e1ec;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

body:not(.insightbase-manual) .ib-unsubscribe-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

body:not(.insightbase-manual) .ib-unsubscribe-label {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 24px 30px;
  background: #f5f7fb;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}

body:not(.insightbase-manual) .ib-unsubscribe-control {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 22px 30px;
  background: #fff;
}

body:not(.insightbase-manual) .ib-unsubscribe-control p {
  width: 100%;
}

body:not(.insightbase-manual) .unsubscribe-page input[type="text"],
body:not(.insightbase-manual) .unsubscribe-page input[type="email"] {
  width: 100%;
  height: 62px;
  padding: 0 18px;
  border: 1px solid #cfd9e5;
  border-radius: 6px;
  background: #fff;
  color: #1f2937;
  font-size: 18px;
  font-weight: 400;
  box-shadow: none;
}

body:not(.insightbase-manual) .unsubscribe-page input::placeholder {
  color: #758293;
  font-weight: 400;
  opacity: 1;
}

body:not(.insightbase-manual) .unsubscribe-page input[type="text"]:focus,
body:not(.insightbase-manual) .unsubscribe-page input[type="email"]:focus {
  border-color: #22ac38;
  outline: 3px solid rgba(34, 172, 56, 0.16);
}

body:not(.insightbase-manual) .ib-release-consent {
  color: #253044;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

body:not(.insightbase-manual) .ib-release-consent p {
  margin: 0;
  padding: 0;
}

body:not(.insightbase-manual) .ib-release-consent label {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
}

body:not(.insightbase-manual) .ib-release-consent .wpcf7-list-item {
  margin: 0;
}

body:not(.insightbase-manual) .ib-release-consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 3px;
  border: 1px solid #9aa5b1;
  border-radius: 2px;
  accent-color: #22ac38;
}

body:not(.insightbase-manual) .ib-release-consent a {
  color: #168a2b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body:not(.insightbase-manual) .ib-unsubscribe-submit {
  width: min(100%, 760px);
  margin: 42px auto 0;
}

body:not(.insightbase-manual) .ib-unsubscribe-submit p {
  display: block;
}

body:not(.insightbase-manual) .ib-unsubscribe-submit .wpcf7-spinner {
  display: block;
  margin: 14px auto 0;
}

body:not(.insightbase-manual) .ib-unsubscribe-submit input[type="submit"] {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  min-height: 70px;
  padding: 16px 24px;
  border: 0;
  border-bottom: 5px solid var(--btnbottomgreen);
  border-radius: 8px;
  background: var(--btngreen);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  box-shadow: none;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

body:not(.insightbase-manual) .ib-unsubscribe-submit input[type="submit"]:hover {
  margin-top: 3px;
  border: 1px solid var(--btngreen);
  border-bottom-width: 2px;
  background: #fff;
  color: var(--btngreen);
  transition: 0.2s;
}

body:not(.insightbase-manual) .ib-unsubscribe-submit input[type="submit"]:active {
  transform: none;
  box-shadow: none;
}

body:not(.insightbase-manual) .ib-unsubscribe-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

body:not(.insightbase-manual) .ib-unsubscribe-turnstile > p {
  display: flex;
  justify-content: center;
  width: 100%;
}

body:not(.insightbase-manual) .unsubscribe-page .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #d12d4f;
  font-size: 13px;
  font-weight: 700;
}

body:not(.insightbase-manual) .unsubscribe-page .wpcf7-response-output {
  width: min(100%, 760px);
  margin: 28px auto 0;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 768px) {
  body:not(.insightbase-manual) .unsubscribe-page {
    padding: 48px 0 90px;
    overflow-x: hidden;
  }

  body:not(.insightbase-manual) .unsubscribe-page__inner {
    width: 100%;
    max-width: none;
    padding: 0 20px;
  }

  body:not(.insightbase-manual) .ib-unsubscribe-form {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    margin: 0 auto;
  }

  body:not(.insightbase-manual) .unsubscribe-page__title {
    margin-bottom: 26px;
    font-size: 28px;
  }

  body:not(.insightbase-manual) .ib-unsubscribe-lead {
    margin-bottom: 50px;
    font-size: 16px;
    text-align: left;
    overflow-wrap: anywhere;
  }

  body:not(.insightbase-manual) .ib-unsubscribe-row {
    grid-template-columns: 1fr;
  }

  body:not(.insightbase-manual) .ib-unsubscribe-table {
    width: 100%;
    max-width: 100%;
  }

  body:not(.insightbase-manual) .ib-unsubscribe-label,
  body:not(.insightbase-manual) .ib-unsubscribe-control {
    min-height: auto;
    padding: 18px;
  }

  body:not(.insightbase-manual) .ib-unsubscribe-label {
    border-bottom: 1px solid #e4ebf2;
    font-size: 16px;
  }

  body:not(.insightbase-manual) .unsubscribe-page input[type="text"],
  body:not(.insightbase-manual) .unsubscribe-page input[type="email"] {
    height: 56px;
    font-size: 16px;
    min-width: 0;
  }

  body:not(.insightbase-manual) .ib-release-consent {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    font-size: 14px;
  }

  body:not(.insightbase-manual) .ib-unsubscribe-submit {
    width: 100%;
    max-width: 100%;
    margin-top: 34px;
  }

  body:not(.insightbase-manual) .ib-unsubscribe-submit input[type="submit"] {
    min-height: 62px;
    font-size: 18px;
  }

  body:not(.insightbase-manual) .ib-unsubscribe-turnstile {
    margin-top: 42px;
  }
}

.solution > p {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.lead__feature p {
  text-align: left;
}

.solution .solution__compact-logo {
  width: min(220px, 62vw);
  margin: 0 auto 26px;
  padding: 0;
}

.solution-feature-list {
  display: grid;
  gap: 96px;
  margin-top: 64px;
}

.solution-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
  text-align: left;
}

.solution-feature__image {
  margin: 0;
  padding: 0;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(33, 48, 40, 0.1);
  overflow: hidden;
}

.solution .solution-feature__image img {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 6px;
}

.solution-feature__number {
  display: block;
  margin-bottom: 4px;
  color: rgba(34, 172, 56, 0.18);
  font-size: clamp(76px, 9vw, 132px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.solution-feature__content h3 {
  margin: 0 0 16px;
  color: #213028;
  font-size: 24px;
  line-height: 1.55;
}

.solution-feature__content p {
  margin: 0;
  padding: 0;
  color: #4e6256;
  line-height: 2;
  text-align: left;
}

.solution-feature__content .solution-feature__note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #e4e8e5;
  border-radius: 6px;
  background: #f5f6f5;
  font-size: 13px;
}

.solution-feature__content .solution-feature__note a {
  font-weight: 700;
}

@media (min-width: 901px) {
  .solution-feature:nth-child(odd) .solution-feature__image {
    grid-column: 2;
    grid-row: 1;
  }

  .solution-feature:nth-child(odd) .solution-feature__content {
    grid-column: 1;
    grid-row: 1;
  }
}

.workflow-comparison {
  padding-top: 0;
}

.workflow-comparison__header {
  max-width: 1080px;
  margin: 0 auto 46px;
  text-align: center;
}

.workflow-comparison__header .section__title {
  margin-bottom: 18px;
  white-space: nowrap;
}

.workflow-comparison__header p {
  margin: 0;
  padding: 0;
  color: #4e6256;
  line-height: 2;
}

.workflow-comparison__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.workflow-comparison-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px 65px 28px 28px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(33, 48, 40, 0.08);
  text-align: left;
}

.workflow-comparison-card::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 0px;
  width: 285px;
  aspect-ratio: 1;
  background-image: var(--workflow-card-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.workflow-comparison-card--before::after {
  background-image: url("/wp-content/uploads/2026/07/before-report-workflow.png");
}

.workflow-comparison-card--after::after {
  background-image: url("/wp-content/uploads/2026/07/after-report-workflow.png");
}

.workflow-comparison-card__body {
  position: relative;
  z-index: 1;
  max-width: none;
  min-width: 0;
  padding: 0;
}

.workflow-comparison-card__label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2f0;
  color: #52635a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.workflow-comparison-card--after .workflow-comparison-card__label {
  background: #dff8e8;
  color: #168629;
}

.workflow-comparison-card__body h3 {
  margin: 0 0 18px;
  color: #213028;
  font-size: 20px;
  line-height: 1.55;
}

.workflow-comparison-card__body p {
  margin: 0 0 18px;
  padding: 0;
  color: #5f7067;
  font-size: 14px;
  line-height: 1.9;
}

.workflow-comparison-card__body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-comparison-card__body li {
  position: relative;
  padding-left: 22px;
  color: #40524a;
  line-height: 1.75;
}

.workflow-comparison-card__body li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #9aa79d;
}

.workflow-comparison-card--after .workflow-comparison-card__body li::before {
  background: var(--accent);
}

.workflow-comparison__closing {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 18px 22px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #f7faf7;
  color: #213028;
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
}

.report-coverage {
  padding-top: 0;
}

.report-coverage__header {
  max-width: 920px;
  margin: 0 auto 46px;
  text-align: center;
}

.report-coverage__header .section__title {
  margin-bottom: 18px;
}

.report-coverage__header p {
  margin: 0;
  padding: 0;
  color: #4e6256;
  line-height: 2;
}

.report-coverage__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.report-coverage-card {
  overflow: hidden;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(33, 48, 40, 0.08);
  text-align: left;
}

.report-coverage-card__image {
  margin: 0;
  padding: 0;
  border-bottom: 0;
  background: #f5f6f5;
}

.report-coverage-card__image img {
  width: 100%;
}

.report-coverage-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
  text-align: left;
}

.report-coverage-items__panel h3 {
  margin: 0 0 18px;
  color: #213028;
  font-size: 22px;
  line-height: 1.55;
}

.report-coverage-items__panel ul {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  grid-template-rows: repeat(6, auto);
  column-gap: 28px;
  row-gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-coverage-items__panel li {
  position: relative;
  margin-left: 20px;
  margin-bottom: 12px;
  padding-left: 30px;
  padding-bottom: 5px;
  border-bottom: 1px dotted rgba(85, 85, 85, 0.333);
  color: #40524a;
  font-size: 16px;
  line-height: 2;
}

.report-coverage-items__panel li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.report-coverage-items__panel--ads li::before {
  background: var(--blue);
}

.ai-comment-section {
  padding-top: 96px;
}

.ai-comment-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.ai-comment-section__content {
  text-align: left;
}

.ai-comment-section__content .section__title {
  margin-bottom: 24px;
  text-align: left;
}

.ai-comment-section__lead {
  margin: 0 0 32px;
  padding: 0;
  color: #40524a;
  font-weight: 400;
  line-height: 2;
}

.ai-comment-points {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-comment-points li {
  position: relative;
  padding-left: 58px;
}

.ai-comment-points li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(29, 176, 70, 0.2);
  border-radius: 999px;
  background: #e9f8ee;
}

.ai-comment-points li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 9px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M12%202l1.8%205.5L19%209l-5.2%201.5L12%2016l-1.8-5.5L5%209l5.2-1.5L12%202Zm7%2012l.9%202.6%202.6.9-2.6.9L19%2021l-.9-2.6-2.6-.9%202.6-.9L19%2014ZM5%2014l.7%202.1%202.1.7-2.1.7L5%2019.6l-.7-2.1-2.1-.7%202.1-.7L5%2014Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='black'%20d='M12%202l1.8%205.5L19%209l-5.2%201.5L12%2016l-1.8-5.5L5%209l5.2-1.5L12%202Zm7%2012l.9%202.6%202.6.9-2.6.9L19%2021l-.9-2.6-2.6-.9%202.6-.9L19%2014ZM5%2014l.7%202.1%202.1.7-2.1.7L5%2019.6l-.7-2.1-2.1-.7%202.1-.7L5%2014Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ai-comment-points h3 {
  margin: 0 0 8px;
  color: #213028;
  font-size: 18px;
  line-height: 1.7;
}

.ai-comment-points p {
  margin: 0;
  padding: 0;
  color: #5f7067;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
}

.ai-comment-section__visual {
  margin: 0;
}

.ai-comment-section__visual img {
  width: 100%;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(33, 48, 40, 0.12);
}

.top-faq {
  padding-top: 96px;
}

.top-faq__header {
  margin-bottom: 42px;
  text-align: center;
}

.top-faq__header .section__title {
  margin-bottom: 0;
}

.top-faq__list {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.top-faq__item {
  padding: 26px 30px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(33, 48, 40, 0.07);
}

.top-faq__item h3,
.top-faq__answer {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
}

.top-faq__item h3 {
  align-items: start;
  margin: 0 0 16px;
  color: #213028;
  font-size: 19px;
  line-height: 1.7;
}

.top-faq__item h3 span,
.top-faq__answer > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.top-faq__item h3 span {
  background: #e9f8ee;
  color: var(--accent);
}

.top-faq__answer > span {
  background: #f0f4f2;
  color: #40524a;
}

.top-faq__answer p {
  margin: 0;
  padding: 0;
  color: #4e6256;
  font-weight: 400;
  line-height: 1.95;
}

.top-faq__answer-note {
  margin-top: 10px !important;
  padding: 12px 14px !important;
  border-radius: 8px;
  background: #f6f8f7;
  font-size: 14px;
}

.final-cta-section {
  padding-top: 0;
}

.final-cta-section__inner {
  padding: 58px 42px 62px;
  border-radius: 8px;
  background: #eef8f1;
  text-align: center;
}

.final-cta-section__inner .section__title {
  max-width: none;
  margin: 0 auto 22px;
  color: #213028;
  white-space: nowrap;
}

.final-cta-section__inner p {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  color: #40524a;
  font-weight: 400;
  line-height: 2;
}

.final-cta-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.final-cta-section__actions .herobtn {
  width: min(100%, 360px);
}

.product-template-page .feature__list li,
.product-template-page .feature__list .ad_blue li {
  margin-left: 20px;
  padding-left: 30px;
}

.product-template-page .feature__list li::before,
.product-template-page .feature__list .ad_blue li::before {
  content: "";
  top: 16px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 0;
  transform: translateY(-50%);
}

.product-template-page .feature__list .ad_blue li::before {
  background: var(--blue);
}

.site-nav {
  flex-wrap: wrap;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  list-style: none;
  line-height: 1;
}

.site-nav .menu-item {
  position: relative;
}

.site-nav .menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.site-nav .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  min-width: 230px;
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(20, 35, 28, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-nav .menu-item-has-children:hover > a::after,
.site-nav .menu-item-has-children:focus-within > a::after {
  transform: translateY(1px) rotate(225deg);
}

.site-nav .sub-menu a {
  display: block;
  margin: 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: #40524a;
  line-height: 1.5;
  white-space: nowrap;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible {
  background: #edf8ef;
  color: var(--accent);
}

.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a {
  color: var(--accent);
}

.site-header__cta.btn.primary {
  margin-left: 8px;
  padding: 10px 22px;
  border-color: var(--accent);
  color: #fff;
  white-space: nowrap;
}

.site-header__cta.btn.primary:hover,
.site-header__cta.btn.primary:focus-visible {
  color: #fff;
}

.service-hero {
  padding: 0;
  background: #f7fbf8;
}

.service-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(360px, 2fr);
  gap: 56px;
  align-items: center;
  min-height: 640px;
  padding-top: 70px;
  padding-bottom: 72px;
}

.service-hero__content {
  opacity: 1;
  transform: none;
  max-width: 680px;
}

.service-eyebrow {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 7px 13px;
  border: 0;
  border-radius: 999px;
  background: #dff8e8;
  color: #168629;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
}

.service-hero__title {
  margin: 0;
  color: #111827;
  font-size: 51px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
}

.service-hero__title-line {
  display: inline-block;
  font-size: 47px;
}

.service-hero__title-accent {
  color: #1ca33a;
  font-size: clamp(40px, 5.1vw, 68px);
}

.service-hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  padding: 0;
  color: #637083;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.service-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  align-items: center;
  margin-top: 34px;
  max-width: 560px;
}

.service-hero__actions .herobtn {
  width: 100%;
  max-width: none;
  min-height: 56px;
  margin: 0;
  padding-right: 25px;
  padding-left: 25px;
  font-size: 16px;
  letter-spacing: 0;
}

.service-hero__coming-soon,
.service-hero__coming-soon:hover,
.service-hero__coming-soon:focus-visible {
  border: 1px solid #b7c4bc;
  border-bottom: 5px solid #9ca9a1;
  background: #dfe7e2;
  color: #5f6f66;
  cursor: not-allowed;
  opacity: 1;
  transform: none;
  box-shadow: none;
}

.service-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 12px 24px;
  border: 1px solid #dde4ea;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.04);
}

.service-link-button:hover,
.service-link-button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.service-hero__trial-note {
  margin: 14px 0 0;
  padding: 0;
  color: #697586;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.service-hero__visual {
  min-width: 0;
}

.service-hero__video-frame {
  width: min(122%, 760px);
  aspect-ratio: 16 / 9;
  margin-left: clamp(-110px, -8vw, -56px);
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(33, 48, 40, 0.12);
  overflow: hidden;
}

.service-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1230px) {
  .service-hero__inner {
    gap: 36px;
  }

  .service-hero__content {
    position: relative;
    z-index: 1;
    max-width: none;
  }

  .service-hero__visual {
    position: relative;
    z-index: 0;
  }

  .service-hero__video-frame {
    width: 100%;
    max-width: 620px;
    margin-right: 0;
    margin-left: 0;
  }
}

.service-hero__placeholder {
  width: min(100%, 650px);
  min-height: 430px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid #dfe8e3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(17, 24, 39, 0.1);
}

.service-hero__placeholder-top {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf1f4;
}

.service-hero__placeholder-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d9e2ec;
}

.service-hero__placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-hero__placeholder-grid span {
  min-height: 78px;
  border-radius: 12px;
  background: #f4f8fb;
}

.service-hero__placeholder-grid span:nth-child(1) {
  background: #e8f8ed;
}

.service-hero__placeholder-grid span:nth-child(2) {
  background: #eef5ff;
}

.service-hero__placeholder-grid span:nth-child(3) {
  background: #f2f6f4;
}

.service-hero__placeholder-chart {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  min-height: 160px;
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 14px;
  background: #f8fafc;
}

.service-hero__placeholder-chart span {
  flex: 1;
  min-height: 34px;
  border-radius: 8px 8px 0 0;
  background: #1ca33a;
}

.service-hero__placeholder-chart span:nth-child(even) {
  background: #1a73e8;
}

.service-hero__placeholder-table {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.service-hero__placeholder-table span {
  height: 13px;
  border-radius: 999px;
  background: #e6edf3;
}

.service-hero__placeholder-table span:nth-child(2) {
  width: 86%;
}

.service-hero__placeholder-table span:nth-child(3) {
  width: 72%;
}

.service-hero__placeholder-table span:nth-child(4) {
  width: 92%;
}

.service-hero__notice {
  border-top: 1px solid #e1e7ee;
  border-bottom: 1px solid #e1e7ee;
  background: #f5f7fa;
}

.service-hero__notice-inner {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-top: 26px;
  padding-bottom: 26px;
}

.service-hero__notice-icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  background: var(--accent);
  -webkit-mask: polygon(50% 0, 88% 14%, 88% 48%, 50% 100%, 12% 48%, 12% 14%);
  mask: polygon(50% 0, 88% 14%, 88% 48%, 50% 100%, 12% 48%, 12% 14%);
}

.service-hero__notice p {
  margin: 0;
  padding: 0;
  color: #697586;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.service-hero__notice a {
  color: #4b5563;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-hero__notice a:hover,
.service-hero__notice a:focus-visible {
  color: var(--accent);
}

.service-section {
  padding: 96px 0;
}

.service-section--plain {
  background: #fff;
}

.service-section--soft {
  background: #f4f8f5;
}

.service-section--data {
  background: #eef5ff;
}

.service-section__header {
  max-width: 920px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-section__header .section__title {
  margin-bottom: 18px;
}

.service-section__header p:not(.section__title_en),
.service-report-layout__content > p,
.template-bridge__content > p {
  margin: 0;
  padding: 0;
  color: #4e6256;
  line-height: 2;
}

.service-flow-grid,
.service-feature-grid,
.service-data-grid,
.service-plan-grid {
  display: grid;
  gap: 18px;
}

.service-flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-data-grid,
.service-plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-flow-card,
.service-feature-card,
.service-data-card,
.service-plan-card {
  padding: 22px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  box-shadow: 0 12px 28px rgba(33, 48, 40, 0.06);
}

.service-flow-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #edf8ef;
  color: #168629;
  font-size: 13px;
  font-weight: 800;
}

.service-flow-card h3,
.service-feature-card h3,
.service-data-card h3,
.service-plan-card h3 {
  margin: 0 0 10px;
  color: #213028;
  font-size: 18px;
  line-height: 1.55;
}

.service-flow-card p,
.service-feature-card p,
.service-data-card p,
.service-plan-card p {
  margin: 0;
  padding: 0;
  color: #5f7067;
  font-size: 14px;
  line-height: 1.9;
}

.service-report-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.service-report-layout__content {
  text-align: left;
}

.service-report-layout__content .section__title,
.template-bridge__content .section__title {
  text-align: left;
  margin-bottom: 18px;
}

.service-check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-check-list li {
  position: relative;
  padding-left: 22px;
  color: #40524a;
  line-height: 1.8;
}

.service-check-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.service-report-layout__image {
  margin: 0;
  padding: 10px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(33, 48, 40, 0.1);
}

.service-report-layout__image img {
  width: 100%;
  border-radius: 6px;
}

.service-data-card {
  border-color: #d3e2f6;
}

.service-data-card h3 {
  color: #185abc;
}

.service-data-note {
  max-width: 980px;
  margin: 22px auto 0;
  padding: 16px 18px;
  border: 1px solid #cfe3fb;
  border-radius: 8px;
  background: #fff;
  color: #40524a;
  font-size: 14px;
  line-height: 1.9;
}

.google-data-page {
  padding: 72px 0 86px;
  background: #fff;
}

.google-data-page__inner {
  width: min(100% - 56px, 1160px);
  margin: 0 auto;
}

.google-data-page__hero {
  max-width: 1040px;
}

.google-data-page__eyebrow {
  margin: 0 0 18px;
  padding: 0;
  color: #697586;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

.google-data-page h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.google-data-page__updated {
  margin: 22px 0 0;
  padding: 0;
  color: #697586;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.google-data-page__lead {
  max-width: 1040px;
  margin: 12px 0 0;
  padding: 0;
  color: #697586;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
}

.google-data-page__notice {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 52px 0 64px;
  padding: 28px 30px;
  border: 1px solid #abeaba;
  border-radius: 16px;
  background: #effbf3;
}

.google-data-page__notice-icon {
  width: 19px;
  height: 21px;
  margin-top: 4px;
  background: var(--accent);
  clip-path: polygon(50% 0, 88% 15%, 88% 49%, 50% 100%, 12% 49%, 12% 15%);
}

.google-data-page__notice p {
  margin: 0;
  padding: 0;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.google-data-page__notice a,
.google-data-page__contact a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.google-data-page__body {
  display: grid;
  gap: 48px;
}

.google-data-page__section {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.google-data-page__number {
  padding-top: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.google-data-page__section h2 {
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

.google-data-page__section p {
  margin: 0;
  padding: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.google-data-page__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.google-data-page__list li {
  position: relative;
  padding-left: 34px;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.google-data-page__list li::before {
  content: "";
  position: absolute;
  top: 0.95em;
  left: 0;
  width: 17px;
  height: 2px;
  background: var(--accent);
}

.google-data-page__contact {
  margin-top: 62px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.google-data-page__contact p {
  margin: 0;
  padding: 0;
  color: #697586;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.pricing-hero__inner {
  min-height: 560px;
}

.pricing-hero__disabled-button,
.pricing-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 25px;
  border: 0;
  border-radius: 8px;
  background: #e5e7eb;
  color: #6b7280;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  cursor: not-allowed;
  opacity: 1;
}

.pricing-hero__preview {
  width: min(100%, 650px);
  min-height: 390px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid #dfe8e3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(17, 24, 39, 0.1);
}

.pricing-hero__preview-header {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf1f4;
}

.pricing-hero__preview-header span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d9e2ec;
}

.pricing-hero__preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.pricing-hero__preview-grid span {
  min-height: 150px;
  border: 1px solid #e6edf3;
  border-radius: 12px;
  background: #f8fafc;
}

.pricing-hero__preview-grid span:nth-child(2) {
  border-color: rgba(34, 172, 56, 0.72);
  background: #effbf3;
}

.pricing-hero__preview-table {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.pricing-hero__preview-table span {
  height: 13px;
  border-radius: 999px;
  background: #e6edf3;
}

.pricing-hero__preview-table span:nth-child(2),
.pricing-hero__preview-table span:nth-child(4) {
  width: 88%;
}

.pricing-hero__preview-table span:nth-child(3) {
  width: 72%;
}

.pricing-section {
  padding: 82px 0 96px;
  background: #fff;
}

.pricing-section__inner {
  width: min(100% - 56px, 1300px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 30px 28px 26px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

.pricing-card.is-featured {
  border: 2px solid var(--accent);
  background: #effbf3;
}

.pricing-card.is-featured::after {
  content: "おすすめ";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px 7px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.pricing-card h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.pricing-card__price {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: baseline;
  margin: 0;
  padding: 0;
  color: #111827;
  line-height: 1.2;
}

.pricing-card__price strong {
  font-size: clamp(34px, 3.3vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
}

.pricing-card__price span {
  color: #697586;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card__description {
  margin: 8px 0 24px;
  padding: 0;
  color: #697586;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.pricing-card__features {
  display: grid;
  gap: 13px;
  margin: 0 0 28px;
}

.pricing-card__features div {
  display: grid;
  grid-template-columns: 18px minmax(0, max-content) auto;
  gap: 8px;
  align-items: center;
}

.pricing-card__features div::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.pricing-card__features dt,
.pricing-card__features dd {
  margin: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.pricing-card__features dt {
  color: #111827;
  font-weight: 400;
}

.pricing-card__features dd {
  color: #111827;
  font-weight: 400;
  text-align: left;
}

.pricing-card__features dd::before {
  content: "：";
  margin: 0 4px 0 0;
}

.pricing-card__button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
}

.pricing-comparison {
  margin-top: 76px;
  overflow-x: auto;
}

.pricing-comparison table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-comparison th,
.pricing-comparison td {
  padding: 17px 0;
  border-bottom: 1px solid #eef1f4;
  color: #111827;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.pricing-comparison thead th {
  color: #111827;
  font-weight: 800;
}

.pricing-comparison thead th:first-child,
.pricing-comparison tbody th {
  color: #697586;
  font-weight: 700;
  text-align: left;
}

.pricing-comparison thead th.is-featured {
  color: var(--accent);
}

.pricing-comparison tbody tr:nth-child(odd) {
  background: #fbfcfd;
}

.pricing-comparison tbody td {
  font-weight: 800;
}

.pricing-note {
  margin: 34px 0 0;
  padding: 18px 22px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #f9fafb;
  color: #697586;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.service-plan-card__price {
  margin: 0 0 10px !important;
  color: var(--accent) !important;
  font-size: 20px !important;
  font-weight: 800;
  line-height: 1.4 !important;
}

.template-bridge {
  padding: 92px 0;
  background: #fff;
}

.template-bridge__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 34px;
  align-items: center;
}

.template-bridge__links {
  display: grid;
  gap: 12px;
}

.template-bridge__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: #f8fbf8;
  color: #2f4338;
  font-weight: 800;
}

.template-bridge__links a::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.template-bridge__links a:hover,
.template-bridge__links a:focus-visible {
  border-color: var(--accent);
  background: #edf8ef;
  color: var(--accent);
}

body:not(.insightbase-manual) .footer {
  padding: 56px 0 30px;
  background: #333a36;
  color: #fff;
}

body:not(.insightbase-manual) .footer__inner {
  width: min(100% - 40px, 1300px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(56px, 7vw, 96px);
  align-items: start;
}

body:not(.insightbase-manual) .footer__logo {
  margin-bottom: 0;
  padding-top: 2px;
}

body:not(.insightbase-manual) .footer__logo img {
  width: 230px;
  height: auto;
}

body:not(.insightbase-manual) .footer__nav {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  column-gap: clamp(56px, 6vw, 88px);
  row-gap: 28px;
  align-items: start;
  justify-content: space-between;
}

body:not(.insightbase-manual) .footer__heading {
  margin: 0 0 16px;
  color: #fff;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

body:not(.insightbase-manual) .footer__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

body:not(.insightbase-manual) .footer__list li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  list-style: none;
  line-height: 1.7;
}

body:not(.insightbase-manual) .footer__list li::before {
  content: "";
  position: absolute;
  top: 0.88em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22ac38;
  transform: translateY(-50%);
}

body:not(.insightbase-manual) .footer__list a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

body:not(.insightbase-manual) .footer__list a:hover,
body:not(.insightbase-manual) .footer__list a:focus-visible {
  color: #70e183;
}

body:not(.insightbase-manual) .footer__copyright {
  width: min(100% - 40px, 1300px);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body:not(.insightbase-manual) .footer__copyright p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  body:not(.insightbase-manual) .footer {
    padding: 44px 0 28px;
  }

  body:not(.insightbase-manual) .footer__inner,
  body:not(.insightbase-manual) .footer__copyright {
    width: min(100% - 40px, 1300px);
  }

  body:not(.insightbase-manual) .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  body:not(.insightbase-manual) .footer__nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body:not(.insightbase-manual) .footer__logo img {
    width: 190px;
  }
}

.service-page {
  padding: 80px 0 120px;
}

.service-page__lead {
  max-width: 900px;
  margin: 0 auto 40px;
}

.service-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.service-card {
  border: 1px solid #e3ece6;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(10, 30, 20, 0.04);
}

.service-card h2 {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0;
}

.service-card__price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #22ac38;
  margin: 12px 0 18px;
  padding: 0;
}

.service-card h3 {
  font-size: 1rem;
  margin: 20px 0 8px;
}

.service-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.service-card__note {
  font-size: 0.93rem;
  margin: 20px 0 10px;
  padding: 0;
}

.service-page .service-card__included {
  background: #f5f8f6;
  border-radius: 10px;
  padding: 16px;
  margin-top: 20px;
}

.service-page .service-card__included h3 {
  margin-top: 0;
}

.service-page .service-card__included ul {
  list-style: none !important;
  padding-left: 0;
}

.service-page .service-card__included li {
  list-style: none !important;
  position: relative;
  padding-left: 1.1em;
}

.service-page .service-card__included li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.tools-archive-page,
.ad-budget-page,
.report-workload-page,
.utm-builder-page,
.url-parameter-checker-page,
.ogp-checker-page,
.ga4-event-sheet-page,
.kpi-generator-page {
  margin: 0;
}

.ib-tool-output {
  white-space: pre-wrap;
}

.ad-budget-form-panel,
.ad-budget-result,
.ad-budget-result section,
[data-ad-budget-cta-shell] section,
.kpi-generator-block,
.kpi-generator-result,
.kpi-generator-result section,
.ga4-event-sheet-block,
.ga4-event-sheet-result,
.ga4-event-sheet-result section,
.utm-builder-result,
.url-parameter-checker-result,
.url-parameter-checker-result section,
.ogp-checker-info-section,
.ogp-checker-result,
.ogp-checker-result section {
  opacity: 1;
  transform: none;
}

.insightbase-pagination {
  width: 100%;
  margin: 52px auto 0;
  text-align: center;
}

.insightbase-pagination__status {
  margin: 0 0 12px;
  padding: 0;
  color: #617164;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.insightbase-pagination__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 10px;
  border: 1px solid #dfe8e3;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(33, 48, 40, 0.08);
}

.insightbase-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #40524a;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.insightbase-pagination a.page-numbers:hover,
.insightbase-pagination a.page-numbers:focus-visible {
  border-color: rgba(34, 172, 56, 0.26);
  background: #edf8ef;
  color: var(--accent);
  transform: translateY(-1px);
}

.insightbase-pagination .page-numbers.current {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(34, 172, 56, 0.2);
}

.insightbase-pagination .page-numbers.dots {
  min-width: 24px;
  padding: 0 2px;
  color: #91a098;
  pointer-events: none;
}

.insightbase-pagination .prev,
.insightbase-pagination .next {
  min-width: 82px;
  border-color: #dfe8e3;
  background: #f7faf7;
  color: #2f4338;
}

@media (max-width: 900px) {
  .service-menu {
    grid-template-columns: 1fr;
  }

  .service-hero__inner,
  .solution-feature,
  .service-report-layout,
  .template-bridge__inner {
    grid-template-columns: 1fr;
  }

  .service-hero__inner {
    gap: 40px;
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .service-hero__video-frame {
    margin-right: auto;
    margin-left: auto;
  }

  .service-hero__placeholder {
    margin-right: auto;
  }

  .pricing-hero__preview {
    margin-right: auto;
  }

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

  .service-flow-grid,
  .service-feature-grid,
  .service-data-grid,
  .service-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 769px) and (max-width: 1250px) {
  .workflow-comparison-card::after {
    width: 150px;
  }
}

@media (max-width: 720px) {
  .site-nav__menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .site-nav .menu-item-has-children > a::after {
    margin-left: auto;
  }

  .site-nav .sub-menu {
    position: static;
    min-width: 0;
    margin: 6px 0 2px;
    padding: 6px 0 6px 14px;
    border: 0;
    border-left: 2px solid #dfe8e3;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav .menu-item-has-children:hover > .sub-menu,
  .site-nav .menu-item-has-children:focus-within > .sub-menu {
    transform: none;
  }

  .site-nav .sub-menu::before {
    display: none;
  }

  .site-nav .sub-menu a {
    padding: 9px 10px;
    white-space: normal;
  }

  .site-header__cta.btn.primary {
    width: 100%;
    margin: 4px 0 0;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  body:not(.insightbase-manual) .content__inner,
  body:not(.insightbase-manual) .hero__inner {
    width: min(100% - 32px, 1300px);
  }

  .solution-feature-list {
    gap: 72px;
    margin-top: 44px;
  }

  .solution-feature {
    gap: 22px;
  }

  .solution-feature__content h3 {
    font-size: 20px;
  }

  .solution-feature__number {
    font-size: 72px;
  }

  .solution-feature__content p {
    font-size: 15px;
    line-height: 1.9;
  }

  .workflow-comparison__header {
    margin-bottom: 32px;
  }

  .workflow-comparison__header .section__title {
    white-space: normal;
  }

  .workflow-comparison__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workflow-comparison-card {
    min-height: auto;
    padding: 22px 22px 244px;
  }

  .workflow-comparison-card::after {
    right: 22px;
    bottom: 0px;
    width: 240px;
  }

  .workflow-comparison-card__body {
    max-width: none;
    padding: 0;
  }

  .workflow-comparison-card__body h3 {
    font-size: 20px;
  }

  .report-coverage__header {
    margin-bottom: 32px;
  }

  .report-coverage__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .report-coverage-items {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 32px;
  }

  .report-coverage-items__panel h3 {
    font-size: 20px;
  }

  .report-coverage-items__panel ul {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    column-gap: 0;
  }

  .ai-comment-section {
    padding-top: 72px;
  }

  .ai-comment-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ai-comment-section__content .section__title {
    text-align: left;
  }

  .ai-comment-section__lead {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.9;
  }

  .ai-comment-points {
    gap: 20px;
  }

  .ai-comment-points li {
    padding-left: 48px;
  }

  .ai-comment-points li::before {
    width: 34px;
    height: 34px;
  }

  .ai-comment-points li::after {
    top: 10px;
    left: 8px;
    width: 18px;
    height: 18px;
  }

  .top-faq {
    padding-top: 72px;
  }

  .top-faq__header {
    margin-bottom: 28px;
  }

  .top-faq__item {
    padding: 22px 18px;
  }

  .top-faq__item h3,
  .top-faq__answer {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .top-faq__item h3 {
    font-size: 17px;
  }

  .top-faq__item h3 span,
  .top-faq__answer > span {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .final-cta-section {
    padding-top: 0;
  }

  .final-cta-section__inner {
    padding: 38px 20px 42px;
  }

  .final-cta-section__inner .section__title {
    margin-bottom: 18px;
    text-align: left;
    white-space: normal;
  }

  .final-cta-section__inner p {
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  .final-cta-section__actions {
    margin-top: 28px;
  }

  .service-hero {
    padding: 0;
  }

  .service-hero__inner {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .service-eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .service-hero__title {
    font-size: 31px;
    line-height: 1.36;
  }

  .service-hero__title-line,
  .service-hero__title-accent {
    font-size: inherit;
  }

  .service-hero__lead {
    font-size: 16px;
  }

  .service-hero__actions,
  .service-hero__actions .herobtn,
  .service-link-button {
    width: 100%;
    max-width: none;
  }

  .service-hero__video-frame,
  .service-hero__placeholder {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .service-hero__placeholder {
    min-height: 340px;
    padding: 16px;
    border-radius: 14px;
  }

  .service-hero__placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }

  .service-hero__placeholder-grid span {
    min-height: 62px;
    border-radius: 10px;
  }

  .service-hero__placeholder-chart {
    min-height: 130px;
    gap: 10px;
    margin-top: 16px;
    padding: 18px;
  }

  .service-hero__placeholder-table {
    margin-top: 16px;
  }

  .service-hero__notice-inner {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .service-hero__notice p {
    font-size: 13px;
  }

  .google-data-page {
    padding: 52px 0 66px;
  }

  .google-data-page__inner {
    width: min(100% - 32px, 1160px);
  }

  .google-data-page__eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .google-data-page h1 {
    font-size: 34px;
    line-height: 1.35;
  }

  .google-data-page__updated {
    margin-top: 16px;
    font-size: 14px;
  }

  .google-data-page__lead {
    font-size: 16px;
  }

  .google-data-page__notice {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 12px;
    margin: 34px 0 46px;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .google-data-page__notice p,
  .google-data-page__section p,
  .google-data-page__list li,
  .google-data-page__contact p {
    font-size: 14px;
  }

  .google-data-page__body {
    gap: 38px;
  }

  .google-data-page__section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .google-data-page__number {
    padding-top: 0;
  }

  .google-data-page__section h2 {
    margin-bottom: 14px;
    font-size: 22px;
  }

  .google-data-page__list li {
    padding-left: 28px;
  }

  .google-data-page__contact {
    margin-top: 46px;
    padding-top: 24px;
  }

  .pricing-hero__preview {
    width: 100%;
    min-height: 320px;
    padding: 16px;
    border-radius: 14px;
  }

  .pricing-hero__preview-grid {
    gap: 10px;
    margin-top: 16px;
  }

  .pricing-hero__preview-grid span {
    min-height: 116px;
    border-radius: 10px;
  }

  .pricing-hero__preview-table {
    margin-top: 16px;
  }

  .pricing-section {
    padding: 56px 0 70px;
  }

  .pricing-section__inner {
    width: min(100% - 32px, 1300px);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px 22px 22px;
    border-radius: 14px;
  }

  .pricing-card__price strong {
    font-size: 34px;
  }

  .pricing-card__features div {
    gap: 10px;
  }

  .pricing-comparison {
    margin-top: 46px;
  }

  .pricing-comparison th,
  .pricing-comparison td {
    padding: 14px 16px;
    font-size: 14px;
  }

  .pricing-note {
    margin-top: 24px;
    padding: 16px;
    font-size: 13px;
  }

  .service-flow-grid,
  .service-feature-grid,
  .service-data-grid,
  .service-plan-grid {
    grid-template-columns: 1fr;
  }

  .service-section,
  .template-bridge {
    padding: 64px 0;
  }

  .service-report-layout__content .section__title,
  .template-bridge__content .section__title {
    text-align: center;
  }

  .insightbase-pagination {
    margin-top: 40px;
  }

  .insightbase-pagination__inner {
    justify-content: flex-start;
    gap: 6px;
    padding: 8px;
    overflow-x: auto;
  }

  .insightbase-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .insightbase-pagination .prev,
  .insightbase-pagination .next {
    min-width: 64px;
  }
}
