:root {
  --ailp-navy: #102a43;
  --ailp-deep: #071d2b;
  --ailp-blue: #2f80ed;
  --ailp-cyan: #00b8a9;
  --ailp-mint: #dffbf3;
  --ailp-lime: #b6ff3b;
  --ailp-yellow: #eaff61;
  --ailp-bg: #f5fbff;
  --ailp-card: #ffffff;
  --ailp-border: rgba(16, 42, 67, 0.12);
  --ailp-text: #203447;
  --ailp-muted: #64748b;
  --ailp-shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
  --ailp-radius: 24px;
}

html {
  scroll-behavior: smooth;
}

#ailp-root,
#ailp-root * {
  box-sizing: border-box;
}

#ailp-root {
  width: 100%;
  color: var(--ailp-text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Noto Sans JP", Arial, sans-serif;
  line-height: 1.75;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 184, 169, 0.15), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(47, 128, 237, 0.14), transparent 32%),
    linear-gradient(180deg, #f8fdff 0%, #eef8ff 42%, #ffffff 100%);
}

.ailp-page {
  overflow: hidden;
}

.ailp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  backdrop-filter: blur(18px);
  background: rgba(248, 253, 255, 0.82);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
}

.ailp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ailp-navy);
}

.ailp-brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--ailp-cyan), var(--ailp-blue));
  box-shadow: 0 12px 28px rgba(47, 128, 237, 0.24);
}

.ailp-brand__title,
.ailp-brand__sub {
  display: block;
}

.ailp-brand__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ailp-brand__sub {
  margin-top: 1px;
  font-size: 11px;
  color: var(--ailp-muted);
}

.ailp-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.ailp-nav a {
  color: var(--ailp-navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.ailp-debug {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ailp-pill,
.ailp-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(0, 184, 169, 0.24);
  color: #08776e;
  background: rgba(223, 251, 243, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 12px;
}

.ailp-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px 72px;
}

.ailp-section,
.ailp-cta,
.ailp-footer {
  margin: 24px 0;
}

.ailp-section {
  padding: 56px;
  border: 1px solid var(--ailp-border);
  border-radius: var(--ailp-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--ailp-shadow);
}

.ailp-section--hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 44px;
  padding: 72px 56px;
  background: #071d2b;
  color: #fff;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  --ailp-hero-bg-opacity: 1;
  --ailp-hero-bg-blur: 0px;
  --ailp-hero-bg-scale: 1;
}

.ailp-hero__bg,
.ailp-hero__overlay,
.ailp-section--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ailp-hero__bg {
  z-index: -3;
  background-image: var(--ailp-hero-bg-image);
  background-size: cover;
  background-position: center;
  opacity: var(--ailp-hero-bg-opacity);
  filter: blur(var(--ailp-hero-bg-blur));
  transform: scale(var(--ailp-hero-bg-scale));
  transition: opacity 0.08s linear, filter 0.08s linear, transform 0.08s linear;
}

.ailp-hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 29, 43, 0.92) 0%, rgba(7, 29, 43, 0.76) 44%, rgba(7, 29, 43, 0.34) 100%),
    radial-gradient(circle at 22% 18%, rgba(0, 184, 169, 0.22), transparent 32%),
    radial-gradient(circle at 84% 24%, rgba(47, 128, 237, 0.22), transparent 35%);
}

.ailp-section--hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,0.05) 48% 49%, transparent 49% 100%),
    linear-gradient(0deg, transparent 0 48%, rgba(255,255,255,0.04) 48% 49%, transparent 49% 100%);
  background-size: 54px 54px;
  opacity: 0.28;
}

.ailp-hero__content,
.ailp-hero__visual {
  position: relative;
  z-index: 1;
}

.ailp-hero__title {
  margin: 20px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.ailp-hero__lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.ailp-hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 30px;
}

.ailp-hero__points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.ailp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ailp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(16, 42, 67, 0.12);
  background: linear-gradient(135deg, var(--ailp-lime), var(--ailp-yellow));
  color: #102a43;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(182, 255, 59, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ailp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(182, 255, 59, 0.38);
}

.ailp-button--secondary {
  background: #fff;
  color: var(--ailp-navy);
  box-shadow: none;
}

.ailp-dashboard {
  border-radius: 26px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.ailp-dashboard__top {
  display: flex;
  gap: 7px;
  padding: 4px 0 14px;
}

.ailp-dashboard__top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

.ailp-hero__image {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
}

.ailp-dashboard__fallback {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ailp-dashboard__metric,
.ailp-dashboard__flow {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
}

.ailp-dashboard__metric--wide {
  grid-column: span 2;
}

.ailp-dashboard__metric span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.ailp-dashboard__metric strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}

.ailp-dashboard__flow {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.ailp-dashboard__flow i {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--ailp-cyan), transparent);
}

.ailp-section__head {
  max-width: 900px;
  margin-bottom: 30px;
}

.ailp-section__label,
.ailp-cta__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ailp-cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.ailp-title {
  margin: 0;
  color: var(--ailp-navy);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.ailp-body {
  margin: 16px 0 0;
  color: var(--ailp-muted);
  font-size: 16px;
}

.ailp-card-grid,
.ailp-price-grid,
.ailp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ailp-card,
.ailp-price,
.ailp-related-card,
.ailp-step,
.ailp-faq__item {
  border: 1px solid var(--ailp-border);
  border-radius: 20px;
  background: #fff;
}

.ailp-card,
.ailp-step,
.ailp-price,
.ailp-related-card {
  padding: 24px;
}

.ailp-card h3,
.ailp-step h3,
.ailp-price h3,
.ailp-related-card h3 {
  margin: 0 0 10px;
  color: var(--ailp-navy);
  font-size: 18px;
  line-height: 1.45;
}

.ailp-card p,
.ailp-step p,
.ailp-price p,
.ailp-related-card p {
  margin: 0;
  color: var(--ailp-muted);
  font-size: 14px;
}

.ailp-section--service,
.ailp-section--mechanism {
  background: linear-gradient(180deg, #ffffff, #f4fcff);
}

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

.ailp-step {
  position: relative;
  overflow: hidden;
}

.ailp-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--ailp-cyan), var(--ailp-blue));
}

.ailp-step__num {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--ailp-blue);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ailp-price {
  position: relative;
}

.ailp-price--featured {
  border-color: rgba(0, 184, 169, 0.5);
  box-shadow: 0 20px 55px rgba(0, 184, 169, 0.18);
}

.ailp-price--featured::before {
  content: "おすすめ";
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  padding: 4px 10px;
  color: #075f58;
  background: var(--ailp-mint);
  font-size: 12px;
  font-weight: 900;
}

.ailp-price__value {
  margin-bottom: 12px !important;
  color: var(--ailp-navy) !important;
  font-size: 22px !important;
  font-weight: 900;
}

.ailp-faq {
  display: grid;
  gap: 12px;
}

.ailp-faq__item {
  padding: 0;
  overflow: hidden;
}

.ailp-faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ailp-navy);
  font-weight: 900;
  list-style: none;
}

.ailp-faq__item summary::-webkit-details-marker {
  display: none;
}

.ailp-faq__item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ailp-muted);
}

.ailp-related-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.ailp-related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 128, 237, 0.4);
}

.ailp-related-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ailp-blue);
  font-size: 12px;
  font-weight: 900;
}

.ailp-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: var(--ailp-radius);
  background: linear-gradient(135deg, var(--ailp-deep), var(--ailp-navy));
  color: #fff;
  box-shadow: var(--ailp-shadow);
}

.ailp-cta--bottom {
  padding: 48px;
}

.ailp-cta__title {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.3;
}

.ailp-cta__text {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.75);
}

.ailp-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 4px 0;
  color: var(--ailp-muted);
  font-size: 13px;
}

.ailp-footer strong {
  display: block;
  /*color: var(--ailp-navy);*/
  color: #ffffff;
  font-size: 15px;
}

.ailp-footer p {
  margin: 5px 0 0;
}

.ailp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.ailp-footer__links a {
  color: var(--ailp-navy);
  font-weight: 800;
  text-decoration: none;
}

.ailp-error {
  max-width: 880px;
  margin: 40px auto;
  padding: 28px;
  border-radius: 18px;
  color: #8a1f11;
  background: #fff2ee;
  border: 1px solid #ffc9bb;
}

@media (max-width: 980px) {
  .ailp-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ailp-nav {
    margin-left: 0;
  }

  .ailp-section--hero,
  .ailp-cta {
    grid-template-columns: 1fr;
  }

  .ailp-card-grid,
  .ailp-price-grid,
  .ailp-related-grid,
  .ailp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ailp-header {
    position: relative;
    padding: 16px 18px;
  }

  .ailp-nav {
    width: 100%;
    gap: 10px;
  }

  .ailp-nav a {
    flex: 1;
    text-align: center;
    padding: 8px 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
  }

  .ailp-main {
    padding: 12px 16px 48px;
  }

  .ailp-section,
  .ailp-section--hero,
  .ailp-cta,
  .ailp-cta--bottom {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .ailp-hero__title {
    font-size: 36px;
  }

  .ailp-hero__lead,
  .ailp-body {
    font-size: 15px;
  }

  .ailp-card-grid,
  .ailp-price-grid,
  .ailp-related-grid,
  .ailp-steps {
    grid-template-columns: 1fr;
  }

  .ailp-button {
    width: 100%;
  }

  .ailp-footer {
    flex-direction: column;
  }

  .ailp-footer__links {
    justify-content: flex-start;
  }
}


/* ==========================================================
   v4 fix: first-view scroll-fade background / FAQ accordion / related banners
   ========================================================== */

#ailp-root {
  background:
    linear-gradient(180deg, #f6fcff 0%, #eef8ff 44%, #ffffff 100%);
}

.ailp-main {
  max-width: 1180px;
  padding-top: 0;
}

.ailp-section--hero {
  width: 100vw;
  min-height: min(860px, calc(100vh - 1px));
  margin: 0 calc(50% - 50vw) 40px;
  padding: clamp(76px, 10vw, 136px) max(24px, calc((100vw - 1180px) / 2 + 24px));
  border: 0;
  border-radius: 0;
  background: #eaf8ff;
  color: var(--ailp-navy);
  box-shadow: none;
  overflow: hidden;
}

.ailp-section--hero .ailp-kicker {
  color: #0d6f95;
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(47, 128, 237, 0.16);
  box-shadow: 0 12px 34px rgba(47, 128, 237, 0.12);
}

.ailp-hero__bg {
  z-index: -4;
  background-image: var(--ailp-hero-bg-image);
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  opacity: var(--ailp-hero-bg-opacity);
  filter: blur(var(--ailp-hero-bg-blur));
  transform: scale(var(--ailp-hero-bg-scale));
  will-change: opacity, filter, transform;
}

.ailp-hero__overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 36%, rgba(255, 255, 255, 0.48) 62%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.20) 0%, rgba(235, 249, 255, 0.55) 100%),
    radial-gradient(circle at 24% 40%, rgba(255,255,255,0.78), transparent 36%),
    radial-gradient(circle at 82% 34%, rgba(47,128,237,0.20), transparent 40%);
}

.ailp-section--hero::before {
  z-index: -2;
  background:
    linear-gradient(120deg, transparent 0%, rgba(0, 184, 169, 0.10) 44%, transparent 68%),
    radial-gradient(circle at 18% 82%, rgba(47, 128, 237, 0.12), transparent 32%);
  background-size: auto;
  opacity: 1;
}

.ailp-hero__title {
  color: #071d2b;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.ailp-hero__lead {
  color: rgba(16, 42, 67, 0.78);
  font-weight: 600;
}

.ailp-hero__points span {
  color: #17324a;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(16, 42, 67, 0.10);
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.08);
}

.ailp-section--hero .ailp-button--secondary {
  color: #071d2b;
  background: rgba(255,255,255,0.86);
  border-color: rgba(16, 42, 67, 0.16);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.12);
}

.ailp-dashboard {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 80px rgba(16, 42, 67, 0.18);
}

.ailp-dashboard__metric,
.ailp-dashboard__flow {
  color: var(--ailp-navy);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(16, 42, 67, 0.08);
}

.ailp-dashboard__metric span {
  color: var(--ailp-muted);
}

.ailp-dashboard__metric strong,
.ailp-dashboard__flow {
  color: var(--ailp-navy);
}

/* FAQ: button-based accordion; old summary/details rules intentionally overridden */
.ailp-faq {
  display: grid;
  gap: 14px;
}

.ailp-faq__item {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(16, 42, 67, 0.12);
  box-shadow: 0 10px 28px rgba(16, 42, 67, 0.05);
}

.ailp-faq__question {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--ailp-navy);
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.ailp-faq__question > span:first-child {
  display: block;
  min-width: 0;
}

.ailp-faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #effaff, #ffffff);
  border: 1px solid rgba(47, 128, 237, 0.22);
  box-shadow: 0 8px 18px rgba(47, 128, 237, 0.12);
}

.ailp-faq__icon::before,
.ailp-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--ailp-blue);
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.ailp-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ailp-faq__item.is-open .ailp-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.ailp-faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}

.ailp-faq__answer {
  padding: 0 22px 22px;
  color: var(--ailp-muted);
  font-size: 15px;
  line-height: 1.85;
}

.ailp-faq__item summary,
.ailp-faq__item p {
  padding: 0;
  margin: 0;
}

/* Related service banners */
.ailp-related-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ailp-related-banner {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #f5fbff;
  border: 1px solid rgba(16, 42, 67, 0.10);
  box-shadow: 0 18px 44px rgba(16, 42, 67, 0.12);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ailp-related-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 128, 237, 0.28);
  box-shadow: 0 26px 60px rgba(16, 42, 67, 0.18);
}

.ailp-related-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.ailp-related-banner__label,
.ailp-related-banner strong,
.ailp-related-banner em {
  display: block;
  padding: 0 24px;
}

.ailp-related-banner__label {
  padding-top: 22px;
  color: var(--ailp-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ailp-related-banner strong {
  margin-top: 6px;
  color: var(--ailp-navy);
  font-size: 24px;
  line-height: 1.4;
}

.ailp-related-banner em {
  padding-bottom: 22px;
  color: var(--ailp-muted);
  font-style: normal;
}

@media (max-width: 980px) {
  .ailp-section--hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 767px) {
  .ailp-section--hero {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 48px 20px;
  }

  .ailp-hero__overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 52%, rgba(255,255,255,0.52) 100%),
      radial-gradient(circle at 20% 36%, rgba(255,255,255,0.82), transparent 42%);
  }

  .ailp-related-banner {
    border-radius: 16px;
  }

  .ailp-related-banner img {
    aspect-ratio: 3 / 1;
    object-fit: cover;
  }

  .ailp-faq__question {
    padding: 18px 18px;
    font-size: 15px;
  }

  .ailp-faq__answer {
    padding: 0 18px 20px;
  }
}

/* ==========================================================
   v5 fix: hero background visibility / related banners 2col / FAQ stability
   ========================================================== */

/* Hero background must sit above the section background, not below it. */
.ailp-section--hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #eaf8ff !important;
}

.ailp-section--hero .ailp-hero__bg,
.ailp-section--hero .ailp-hero__overlay,
.ailp-section--hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ailp-section--hero .ailp-hero__bg {
  z-index: 0 !important;
  display: block !important;
  background-image: var(--ailp-hero-bg-image, url('/lp/ai-lp/img/hero-ai-dashboard-bg.png')) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: var(--ailp-hero-bg-opacity, 1) !important;
  filter: blur(var(--ailp-hero-bg-blur, 0px));
  transform: scale(var(--ailp-hero-bg-scale, 1));
  transform-origin: center center;
  will-change: opacity, filter, transform;
}

.ailp-section--hero .ailp-hero__overlay {
  z-index: 1 !important;
}

.ailp-section--hero::before {
  z-index: 2 !important;
}

.ailp-section--hero .ailp-hero__content,
.ailp-section--hero .ailp-hero__visual {
  position: relative;
  z-index: 3 !important;
}

/* Related service banners: PC 2 columns, SP 1 column. */
.ailp-related-banner-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.ailp-related-banner {
  height: 100%;
}

.ailp-related-banner img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  aspect-ratio: 3 / 1;
  object-fit: cover !important;
}

/* FAQ accordion: keep collapsed panels hidden and prevent legacy rules from leaking in. */
.ailp-faq__item {
  display: block !important;
}

.ailp-faq__question {
  min-height: 0;
}

.ailp-faq__panel {
  display: block !important;
  max-height: 0;
  overflow: hidden !important;
  transition: max-height 0.34s ease;
}

.ailp-faq__item:not(.is-open) .ailp-faq__panel {
  max-height: 0 !important;
}

.ailp-faq__answer {
  display: block !important;
  margin: 0 !important;
}

@media (max-width: 767px) {
  .ailp-related-banner-grid {
    grid-template-columns: 1fr !important;
  }

  .ailp-section--hero .ailp-hero__bg {
    background-position: center top !important;
  }
}

/* ==========================================================
   v6 fix: force first-view background on the hero section itself
   ========================================================== */

/*
  The hero background is forced onto the section pseudo layer so it works
  even if the generated inner .ailp-hero__bg element is not rendered or is
  hidden by older cached markup/CSS.
*/
.ailp-section--hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  background-color: #eaf8ff !important;
  background-image: none !important;
}

/* Actual hero image layer */
.ailp-section--hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: block !important;
  pointer-events: none !important;
  background-image: var(--ailp-hero-bg-image, url('/lp/ai-lp/img/hero-ai-dashboard-bg.png')) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  opacity: var(--ailp-hero-bg-opacity, 1) !important;
  filter: blur(var(--ailp-hero-bg-blur, 0px)) !important;
  transform: scale(var(--ailp-hero-bg-scale, 1)) !important;
  transform-origin: center center !important;
  transition: opacity 0.08s linear, filter 0.08s linear, transform 0.08s linear !important;
  will-change: opacity, filter, transform !important;
}

/* Soft white overlay above image. Keep this above image but below content. */
.ailp-section--hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 38%, rgba(255,255,255,0.48) 68%, rgba(255,255,255,0.22) 100%),
    radial-gradient(circle at 20% 35%, rgba(255,255,255,0.78), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(235,249,255,0.35) 0%, rgba(234,248,255,0.92) 100%) !important;
  opacity: 1 !important;
}

/* Existing generated bg/overlay elements are disabled to avoid layer conflicts. */
.ailp-section--hero .ailp-hero__bg,
.ailp-section--hero .ailp-hero__overlay {
  display: none !important;
}

.ailp-section--hero > * {
  position: relative !important;
  z-index: 2 !important;
}

.ailp-section--hero .ailp-hero__content,
.ailp-section--hero .ailp-hero__visual {
  position: relative !important;
  z-index: 3 !important;
}

/* Related service banners: PC two-column, tablet/mobile one-column. */
.ailp-related-banner-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.ailp-related-banner {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.ailp-related-banner img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 1 !important;
  object-fit: cover !important;
}

@media (max-width: 767px) {
  .ailp-related-banner-grid {
    grid-template-columns: 1fr !important;
  }

  .ailp-section--hero::after {
    background-position: center top !important;
  }

  .ailp-section--hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 55%, rgba(255,255,255,0.62) 100%),
      radial-gradient(circle at 24% 24%, rgba(255,255,255,0.82), rgba(255,255,255,0) 42%) !important;
  }
}

/* ==========================================================
   v7 fix: apply first-view image directly to hero section
   ========================================================== */

/*
  The previous versions placed the hero image only on pseudo/inner layers.
  In the current markup the CSS variable is correctly present on the section,
  so the most reliable fix is to apply the image directly to the section's
  own background-image stack.
*/
.ailp-section--hero {
  background-color: #eaf8ff !important;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 38%, rgba(255,255,255,0.50) 68%, rgba(255,255,255,0.24) 100%),
    radial-gradient(circle at 20% 35%, rgba(255,255,255,0.78), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, rgba(235,249,255,0.28) 0%, rgba(234,248,255,0.84) 100%),
    var(--ailp-hero-bg-image, url('/lp/ai-lp/img/hero-ai-dashboard-bg.png')) !important;
  background-size: cover, cover, cover, cover !important;
  background-position: center center, center center, center center, center center !important;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat !important;
  background-blend-mode: normal, normal, normal, normal !important;
}

/* Disable the pseudo image layer only; keep ::before available as a light effect if older rules remain. */
.ailp-section--hero::after {
  display: none !important;
}

.ailp-section--hero::before {
  z-index: 1 !important;
  background:
    linear-gradient(120deg, transparent 0%, rgba(0,184,169,0.08) 46%, transparent 70%),
    radial-gradient(circle at 82% 28%, rgba(47,128,237,0.12), transparent 36%) !important;
  opacity: 1 !important;
}

.ailp-section--hero > *,
.ailp-section--hero .ailp-hero__content,
.ailp-section--hero .ailp-hero__visual {
  position: relative !important;
  z-index: 3 !important;
}

/* Related service banners: PC two-column, SP one-column. */
.ailp-related-banner-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.ailp-related-banner img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 1 !important;
  object-fit: cover !important;
}

@media (max-width: 767px) {
  .ailp-section--hero {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 45%, rgba(234,248,255,0.88) 100%),
      var(--ailp-hero-bg-image, url('/lp/ai-lp/img/hero-ai-dashboard-bg.png')) !important;
    background-size: cover, cover !important;
    background-position: center top, center top !important;
    background-repeat: no-repeat, no-repeat !important;
  }

  .ailp-related-banner-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   v8 fix: render hero background as a real IMG layer
   This avoids relying on CSS background-image only.
========================================================= */
.ailp-section--hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #eaf8ff !important;
}

.ailp-section--hero .ailp-hero__bg {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: var(--ailp-hero-bg-opacity, 1) !important;
  filter: blur(var(--ailp-hero-bg-blur, 0px)) !important;
  transform: scale(var(--ailp-hero-bg-scale, 1)) !important;
  transform-origin: center center !important;
  transition: opacity .08s linear, filter .08s linear, transform .08s linear !important;
}

.ailp-section--hero .ailp-hero__bg-img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.ailp-section--hero .ailp-hero__overlay {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.80) 36%, rgba(255,255,255,.54) 64%, rgba(255,255,255,.28) 100%),
    radial-gradient(circle at 20% 38%, rgba(255,255,255,.72), rgba(255,255,255,0) 44%),
    linear-gradient(180deg, rgba(236,249,255,.20) 0%, rgba(234,248,255,.74) 100%) !important;
}

.ailp-section--hero::before,
.ailp-section--hero::after {
  pointer-events: none !important;
}

.ailp-section--hero .ailp-hero__content,
.ailp-section--hero .ailp-hero__visual {
  position: relative !important;
  z-index: 2 !important;
}

.ailp-related-banner-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.ailp-related-banner {
  display: block !important;
  overflow: hidden !important;
}

.ailp-related-banner img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 3 / 1 !important;
  object-fit: cover !important;
}

@media (max-width: 767px) {
  .ailp-section--hero .ailp-hero__overlay {
    background:
      linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.75) 48%, rgba(234,248,255,.88) 100%),
      radial-gradient(circle at 30% 25%, rgba(255,255,255,.78), rgba(255,255,255,0) 48%) !important;
  }

  .ailp-related-banner-grid {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   v9 fix: first-view background image is fixed to viewport
   - The image itself does not scroll away.
   - Scroll interaction changes opacity / blur / scale only.
   - Later white sections naturally cover the fixed image.
========================================================= */
.ailp-section--hero {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #eaf8ff !important;
}

.ailp-section--hero .ailp-hero__bg {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  z-index: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: var(--ailp-hero-bg-opacity, 1) !important;
  filter: blur(var(--ailp-hero-bg-blur, 0px)) !important;
  transform: scale(var(--ailp-hero-bg-scale, 1)) translateZ(0) !important;
  transform-origin: center center !important;
  will-change: opacity, filter, transform !important;
  transition: opacity .08s linear, filter .08s linear, transform .08s linear !important;
}

.ailp-section--hero .ailp-hero__bg-img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.ailp-section--hero .ailp-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,.54) 72%, rgba(255,255,255,.30) 100%),
    radial-gradient(circle at 22% 36%, rgba(255,255,255,.78), rgba(255,255,255,0) 45%),
    linear-gradient(180deg, rgba(234,248,255,.20) 0%, rgba(234,248,255,.78) 100%) !important;
}

.ailp-section--hero::before,
.ailp-section--hero::after {
  display: none !important;
}

.ailp-section--hero .ailp-hero__content,
.ailp-section--hero .ailp-hero__visual {
  position: relative !important;
  z-index: 2 !important;
}

.ailp-section:not(.ailp-section--hero),
.ailp-cta-band,
.ailp-footer {
  position: relative;
  z-index: 3;
}

@media (max-width: 767px) {
  .ailp-section--hero .ailp-hero__bg {
    height: 100svh !important;
  }
}

/* =========================================================
   v10 fix
   1. Header fixed at browser width 100% like the chatbot LP.
   2. Remove hero overlay layer completely.
========================================================= */
.ailp-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 18px max(24px, calc((100vw - 1180px) / 2 + 24px)) !important;
  background: rgba(248, 253, 255, 0.88) !important;
  border-bottom: 1px solid rgba(16, 42, 67, 0.08) !important;
  box-shadow: 0 8px 30px rgba(16, 42, 67, 0.08) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.ailp-main {
  padding-top: 118px !important;
}

.ailp-section--hero .ailp-hero__overlay,
.ailp-hero__overlay {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  background: none !important;
}

.ailp-section--hero .ailp-hero__content,
.ailp-section--hero .ailp-hero__visual {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 980px) {
  .ailp-header {
    align-items: flex-start !important;
    flex-direction: column !important;
    padding: 16px 22px !important;
  }

  .ailp-main {
    padding-top: 150px !important;
  }
}

@media (max-width: 767px) {
  .ailp-header {
    position: fixed !important;
    padding: 14px 16px !important;
  }

  .ailp-main {
    padding-top: 156px !important;
  }
}

/* =========================================================
   v17 fix: hero text color by hero_variant
   - default(hero-ai-dashboard-bg.png): dark text
   - problem/mechanism/benefit/trust: white text
========================================================= */

/* default only: keep current dark-text design */
.ailp-section--hero[data-hero-variant-id="default"] {
  color: var(--ailp-navy) !important;
}

.ailp-section--hero[data-hero-variant-id="default"] .ailp-hero__title {
  color: #071d2b !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5) !important;
}

.ailp-section--hero[data-hero-variant-id="default"] .ailp-hero__lead {
  color: rgba(16, 42, 67, 0.78) !important;
}

.ailp-section--hero[data-hero-variant-id="default"] .ailp-hero__points span {
  color: #17324a !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(16, 42, 67, 0.10) !important;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.08) !important;
}

/* non-default hero variants: dark/red/green/purple/gold visuals need white text */
.ailp-section--hero:not([data-hero-variant-id="default"]) {
  color: #ffffff !important;
}

.ailp-section--hero:not([data-hero-variant-id="default"]) .ailp-kicker {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.ailp-section--hero:not([data-hero-variant-id="default"]) .ailp-hero__title {
  color: #ffffff !important;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.62),
    0 1px 2px rgba(0, 0, 0, 0.55) !important;
}

.ailp-section--hero:not([data-hero-variant-id="default"]) .ailp-hero__lead {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48) !important;
}

.ailp-section--hero:not([data-hero-variant-id="default"]) .ailp-hero__points span {
  color: rgba(255, 255, 255, 0.96) !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.ailp-section--hero:not([data-hero-variant-id="default"]) .ailp-button--secondary {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* reduce the original bright wash only for non-default visuals */
.ailp-section--hero:not([data-hero-variant-id="default"]) .ailp-hero__overlay {
  background: none !important;
}

/* =========================================================
   v18 fix: period-ended section
========================================================= */

.ailp-section--period-ended {
  text-align: center !important;
}

.ailp-period-ended {
  max-width: 760px;
  margin: 0 auto;
}

.ailp-section--period-ended .ailp-title {
  margin-top: 10px;
}

.ailp-card-grid--period-ended {
  margin-top: 28px;
  text-align: left;
}

/* =========================================================
   v20 fix: Safari related service banner hard aspect-ratio box
   - Uses padding-ratio box instead of relying on image intrinsic height.
   - This overrides older height:100% / aspect-ratio rules.
========================================================= */

.ailp-section--related .ailp-related-banner-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: start !important;
}

.ailp-section--related .ailp-related-banner {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  padding-top: 33.333333% !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: #f5fbff !important;
  line-height: 0 !important;
  box-sizing: border-box !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.ailp-section--related .ailp-related-banner img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .ailp-section--related .ailp-related-banner-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .ailp-section--related .ailp-related-banner {
    border-radius: 16px !important;
  }
}

/* =========================================================
   v21 fix: Safari / Firefox related banner hover motion
   - v20 added transform on the base banner for Safari stability.
   - This scoped hover rule must appear after v20 to override it.
========================================================= */

.ailp-section--related .ailp-related-banner:hover,
.ailp-section--related .ailp-related-banner:focus-visible {
  -webkit-transform: translateY(-4px) translateZ(0) !important;
  transform: translateY(-4px) translateZ(0) !important;
  border-color: rgba(47, 128, 237, 0.28) !important;
  box-shadow: 0 26px 60px rgba(16, 42, 67, 0.18) !important;
}

.ailp-section--related .ailp-related-banner {
  transition:
    -webkit-transform 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease !important;
  will-change: transform;
}

/* =========================================================
   v22 premium footer and right page-top
========================================================= */

.ailp-footer--premium {
  position: relative;
  display: block;
  width: 100%;
  margin-top: clamp(72px, 8vw, 124px);
  padding: 0 !important;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 13% 20%, rgba(57, 255, 218, 0.18), transparent 23%),
    radial-gradient(circle at 88% 62%, rgba(39, 112, 255, 0.22), transparent 25%),
    linear-gradient(135deg, #08111d 0%, #07101b 46%, #0c1624 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.ailp-footer--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 100%);
}

.ailp-footer--premium::after {
  content: "";
  position: absolute;
  inset: auto -15% -40% -15%;
  z-index: -1;
  height: 58%;
  background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.16), transparent 62%);
  filter: blur(10px);
  opacity: 0.8;
}

.ailp-footer-contact {
  position: relative;
  padding: clamp(96px, 10vw, 150px) 24px clamp(72px, 8vw, 112px);
  text-align: center;
}

.ailp-footer-contact__inner {
  width: min(960px, 100%);
  margin: 0 auto;
}

.ailp-footer-contact__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 40px;
  margin-bottom: 32px;
  padding: 8px 22px;
  border: 1px solid rgba(10, 224, 213, 0.58);
  border-radius: 999px;
  color: #17f0e3;
  background: rgba(4, 18, 31, 0.58);
  box-shadow:
    0 0 0 1px rgba(20, 255, 229, 0.05) inset,
    0 12px 34px rgba(0, 231, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ailp-footer-contact__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-shadow:
    0 8px 28px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(56, 189, 248, 0.1);
}

.ailp-footer-contact__text {
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.ailp-footer-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: min(330px, 86vw);
  min-height: 66px;
  margin-top: 46px;
  padding: 18px 34px;
  border-radius: 999px;
  color: #081626 !important;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.34),
    0 0 46px rgba(255, 255, 255, 0.16);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.ailp-footer-contact__button:hover,
.ailp-footer-contact__button:focus-visible {
  transform: translateY(-4px);
  background: linear-gradient(180deg, #ffffff 0%, #eaf6ff 100%);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.42),
    0 0 60px rgba(116, 214, 255, 0.24);
}

.ailp-footer-contact__button-arrow {
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.ailp-footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(3, 10, 18, 0.62), rgba(3, 10, 18, 0.88));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ailp-footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 48px;
}

.ailp-footer-brand {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
}

.ailp-footer-brand__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.ailp-footer-brand__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #21d4fd 0%, #2386ff 52%, #8b5cf6 100%);
  box-shadow: 0 12px 28px rgba(35, 134, 255, 0.28);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.ailp-footer-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.8;
}

.ailp-footer-brand small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.ailp-footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px 34px;
}

.ailp-footer-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: color 0.22s ease;
}

.ailp-footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, #22d3ee, #b9ff39);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.ailp-footer-nav a:hover,
.ailp-footer-nav a:focus-visible {
  color: #ffffff !important;
}

.ailp-footer-nav a:hover::after,
.ailp-footer-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ailp-page-top {
  position: fixed;
  right: clamp(18px, 3vw, 36px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 1200;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, #111827 0%, #030712 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(56, 189, 248, 0.16);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease,
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.ailp-page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ailp-page-top:hover,
.ailp-page-top:focus-visible {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 30px 58px rgba(0, 0, 0, 0.42),
    0 0 44px rgba(56, 189, 248, 0.28);
}

.ailp-page-top__arrow {
  display: block;
  font-size: 31px;
  line-height: 0.9;
  font-weight: 600;
}

.ailp-page-top__text {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .ailp-footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
  }

  .ailp-footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .ailp-footer--premium {
    margin-top: 72px;
  }

  .ailp-footer-contact {
    padding: 82px 20px 64px;
  }

  .ailp-footer-contact__title {
    font-size: clamp(31px, 9vw, 42px);
  }

  .ailp-footer-contact__text {
    text-align: left;
  }

  .ailp-footer-contact__button {
    width: 100%;
    min-width: 0;
  }

  .ailp-footer-bottom__inner {
    width: min(100% - 40px, 1180px);
    padding: 34px 0 38px;
  }

  .ailp-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 18px 22px;
  }

  .ailp-page-top {
    right: 16px;
    bottom: 16px;
    width: 68px;
    height: 68px;
  }

  .ailp-page-top__arrow {
    font-size: 25px;
  }

  .ailp-page-top__text {
    font-size: 9px;
  }
}

/* =========================================================
   v23 fix: premium footer full browser width / no bottom gap
   - Footer is inside the LP max-width container, so make it full-bleed.
   - Remove unnecessary bottom whitespace.
========================================================= */

.ailp-footer--premium {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
}

.ailp-footer--premium + * {
  margin-top: 0 !important;
}

#ailp-root,
.ailp-root,
.ailp-page,
.ailp-shell,
.ailp-main,
main {
  margin-bottom: 0 !important;
}

body {
  margin-bottom: 0 !important;
}

html,
body {
  min-height: 100%;
}

body:has(.ailp-footer--premium) {
  padding-bottom: 0 !important;
}

.ailp-footer-contact {
  padding-left: max(24px, calc((100vw - 1180px) / 2)) !important;
  padding-right: max(24px, calc((100vw - 1180px) / 2)) !important;
}

.ailp-footer-bottom__inner {
  width: min(1180px, calc(100% - 48px)) !important;
}

@media (max-width: 767px) {
  .ailp-footer-contact {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .ailp-footer-bottom__inner {
    width: min(100% - 40px, 1180px) !important;
  }
}

/* =========================================================
   v24 fix: footer edge-to-edge and remove final white gap
   - Remove browser/body side margin.
   - Force premium footer to touch viewport edges.
   - Remove bottom padding/margin from page wrappers.
========================================================= */

html,
body {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  background: #07101b !important;
}

body > *:last-child,
#ailp-root,
.ailp-root,
.ailp-page,
.ailp-shell,
.ailp-main,
main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

main:has(.ailp-footer--premium),
.ailp-main:has(.ailp-footer--premium),
.ailp-shell:has(.ailp-footer--premium),
.ailp-page:has(.ailp-footer--premium),
.ailp-root:has(.ailp-footer--premium),
#ailp-root:has(.ailp-footer--premium) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.ailp-footer--premium {
  left: auto !important;
  right: auto !important;
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-bottom: -1px !important;
  padding-bottom: 0 !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
}

.ailp-footer-bottom {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.ailp-footer-bottom__inner {
  padding-bottom: 48px !important;
}

.ailp-footer--premium + * {
  display: none !important;
}

@media (max-width: 767px) {
  .ailp-footer-bottom__inner {
    padding-bottom: 38px !important;
  }
}

/* =========================================================
   v20260611-02 externalized inline styles from index.html
   - Report image lightbox styles
   - CMS loading screen styles
========================================================= */

/* --- ailp-report-image-styles --- */
.ailp-section-images {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}
.ailp-section-image {
	margin: 0;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}
.ailp-section-image__trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	appearance: none;
	cursor: zoom-in;
	background: transparent;
	text-align: inherit;
}
.ailp-section-image__trigger::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 58%, rgba(15, 23, 42, 0.46) 100%);
	opacity: 0;
	transition: opacity 0.22s ease;
	pointer-events: none;
}
.ailp-section-image__trigger:hover::after, .ailp-section-image__trigger:focus-visible::after {
opacity: 1;
}
.ailp-section-image__img {
	display: block;
	width: 100%;
	height: auto;
	background: #f8fbff;
}
.ailp-section-image__zoom {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: #0f172a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}
.ailp-section-image__caption {
	padding: 12px 14px 14px;
	font-size: 13px;
	line-height: 1.7;
	color: #475569;
	background: #fff;
}
.ailp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(2, 6, 23, 0.78);
	backdrop-filter: blur(6px);
}
.ailp-lightbox.is-open {
	display: flex;
}
.ailp-lightbox__dialog {
	position: relative;
	width: min(1120px, 96vw);
	max-height: 92vh;
	overflow: auto;
	border-radius: 20px;
	background: #f8fbff;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}
.ailp-lightbox__close {
	position: sticky;
	top: 12px;
	left: calc(100% - 56px);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 12px 12px -52px auto;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	background: rgba(15, 23, 42, 0.92);
	color: #fff;
	font-size: 22px;
	line-height: 1;
}
.ailp-lightbox__figure {
	margin: 0;
	padding: 18px;
}
.ailp-lightbox__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	border-radius: 14px;
	background: #fff;
}
.ailp-lightbox__caption {
	padding: 14px 4px 0;
	color: #334155;
	font-size: 14px;
	line-height: 1.8;
}

@media (max-width: 960px) {
.ailp-lightbox {
	padding: 10px;
	align-items: flex-start;
}
.ailp-lightbox__dialog {
	width: 100%;
	max-height: 96vh;
	border-radius: 16px;
}
.ailp-lightbox__figure {
	padding: 12px;
}
.ailp-lightbox__caption {
	font-size: 13px;
}
}

@media (max-width: 960px) {
.ailp-section-images {
	grid-template-columns: 1fr;
	gap: 16px;
}
}

/* --- ailp-cms-loading-styles --- */
html.is-ailp-loading,
html.is-ailp-loading body {
  min-height: 100%;
  overflow: hidden;
}
html.is-ailp-loading main {
  visibility: hidden;
}
html.is-ailp-loading #ailp-cms-loading {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#ailp-cms-loading {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  color: #fff;
  background:
    radial-gradient(circle at 50% 42%, rgba(56, 189, 248, 0.22), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(129, 140, 248, 0.28), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(20, 184, 166, 0.22), transparent 32%),
    linear-gradient(135deg, #020617 0%, #08111f 42%, #0f1f3d 100%);
  transition: opacity 0.56s ease, visibility 0.56s ease;
}
#ailp-cms-loading.is-fading {
  opacity: 0;
  visibility: hidden;
}
.ailp-loader {
  position: relative;
  width: min(520px, calc(100vw - 48px));
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
}
.ailp-loader::before,
.ailp-loader::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.ailp-loader::before {
  width: 520px;
  height: 520px;
  max-width: 110vw;
  max-height: 110vw;
  border: 1px solid rgba(125, 211, 252, 0.18);
  background:
    linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.22), transparent),
    radial-gradient(circle, rgba(14, 165, 233, 0.06), transparent 62%);
  filter: blur(0.1px);
  animation: ailp-loader-scan 4.8s linear infinite;
}
.ailp-loader::after {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 80px rgba(56, 189, 248, 0.22),
    inset 0 0 60px rgba(59, 130, 246, 0.18);
  animation: ailp-loader-pulse 2.4s ease-in-out infinite;
}
.ailp-loader__grid {
  position: absolute;
  inset: -25%;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.20) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(760px) rotateX(64deg) translateY(10%);
  transform-origin: center bottom;
  animation: ailp-loader-grid 7s linear infinite;
}
.ailp-loader__orb {
  position: absolute;
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 32%, rgba(255, 255, 255, 0.92), rgba(125, 211, 252, 0.28) 26%, rgba(37, 99, 235, 0.18) 58%, transparent 70%),
    conic-gradient(from 0deg, rgba(56, 189, 248, 0.12), rgba(99, 102, 241, 0.58), rgba(20, 184, 166, 0.46), rgba(56, 189, 248, 0.12));
  box-shadow:
    0 0 36px rgba(56, 189, 248, 0.48),
    0 0 120px rgba(37, 99, 235, 0.36);
  animation: ailp-loader-orb 3.8s ease-in-out infinite;
}
.ailp-loader__ring {
  position: absolute;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  border: 1px solid rgba(125, 211, 252, 0.28);
  box-shadow: inset 0 0 30px rgba(56, 189, 248, 0.10);
}
.ailp-loader__ring--one {
  animation: ailp-loader-rotate 4s linear infinite;
}
.ailp-loader__ring--one::before,
.ailp-loader__ring--two::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #67e8f9;
  box-shadow: 0 0 28px #22d3ee;
}
.ailp-loader__ring--one::before {
  top: 18px;
  left: 43px;
}
.ailp-loader__ring--two {
  width: 304px;
  height: 304px;
  border-color: rgba(167, 139, 250, 0.20);
  transform: rotate(24deg);
  animation: ailp-loader-rotate-reverse 6.2s linear infinite;
}
.ailp-loader__ring--two::before {
  right: 38px;
  bottom: 54px;
  background: #a78bfa;
  box-shadow: 0 0 28px #8b5cf6;
}
.ailp-loader__content {
  position: relative;
  z-index: 2;
  transform: translateY(182px);
}
.ailp-loader__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.ailp-loader__badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 20px #22d3ee;
  animation: ailp-loader-dot 1.2s ease-in-out infinite;
}
.ailp-loader__title {
  margin: 0;
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1.12;
  letter-spacing: 0.03em;
  font-weight: 900;
  text-shadow: 0 0 28px rgba(125, 211, 252, 0.32);
}
.ailp-loader__lead {
  margin: 14px 0 0;
  color: rgba(226, 232, 240, 0.84);
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.8;
}
.ailp-loader__progress {
  position: relative;
  width: min(320px, 72vw);
  height: 3px;
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
}
.ailp-loader__progress::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 48%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #38bdf8, #a78bfa, transparent);
  animation: ailp-loader-progress 1.65s ease-in-out infinite;
}
.ailp-loader__status {
  margin-top: 12px;
  color: rgba(186, 230, 253, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
#ailp-cms-loading.is-error .ailp-loader__badge {
  color: #fecaca;
  border-color: rgba(248, 113, 113, 0.34);
}
#ailp-cms-loading.is-error .ailp-loader__badge::before {
  background: #fb7185;
  box-shadow: 0 0 20px #fb7185;
}
#ailp-cms-loading.is-error .ailp-loader__status {
  color: #fecaca;
}
#ailp-cms-loading.is-error .ailp-loader__lead {
  color: rgba(254, 202, 202, 0.86);
}
@keyframes ailp-loader-scan {
  0% { transform: rotate(0deg) scale(1); opacity: 0.78; }
  50% { transform: rotate(180deg) scale(1.035); opacity: 0.96; }
  100% { transform: rotate(360deg) scale(1); opacity: 0.78; }
}
@keyframes ailp-loader-pulse {
  0%, 100% { transform: scale(0.94); opacity: 0.62; }
  50% { transform: scale(1.04); opacity: 0.95; }
}
@keyframes ailp-loader-grid {
  from { background-position: 0 0; }
  to { background-position: 0 84px; }
}
@keyframes ailp-loader-orb {
  0%, 100% { transform: scale(0.94) translateY(0); }
  50% { transform: scale(1.02) translateY(-4px); }
}
@keyframes ailp-loader-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes ailp-loader-rotate-reverse {
  from { transform: rotate(24deg); }
  to { transform: rotate(-336deg); }
}
@keyframes ailp-loader-dot {
  0%, 100% { opacity: 0.46; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes ailp-loader-progress {
  0% { transform: translateX(-115%); }
  100% { transform: translateX(235%); }
}
@media (max-width: 640px) {
  .ailp-loader {
    min-height: 390px;
  }
  .ailp-loader__content {
    transform: translateY(166px);
  }
  .ailp-loader__orb {
    width: 148px;
    height: 148px;
  }
  .ailp-loader__ring {
    width: 214px;
    height: 214px;
  }
  .ailp-loader__ring--two {
    width: 254px;
    height: 254px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ailp-loader,
  .ailp-loader::before,
  .ailp-loader::after,
  .ailp-loader__grid,
  .ailp-loader__orb,
  .ailp-loader__ring,
  .ailp-loader__badge::before,
  .ailp-loader__progress::before {
    animation: none !important;
  }
}


/* === AI-LP price plan update 20260618 === */
.ailp-price-grid--plans {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.ailp-price-grid--plans .ailp-price {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 22px;
}

.ailp-price__head {
  margin-bottom: 18px;
}

.ailp-price__summary {
  min-height: 3.2em;
  margin: 0 !important;
  color: var(--ailp-muted) !important;
  font-size: 13px !important;
  line-height: 1.65;
}

.ailp-price__value,
.ailp-price__monthly {
  display: grid;
  gap: 4px;
  margin: 0 0 12px !important;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(237, 250, 255, 0.98), rgba(246, 255, 253, 0.98));
}

.ailp-price__monthly {
  margin-bottom: 20px !important;
  background: #f7fbff;
}

.ailp-price__value span,
.ailp-price__monthly span {
  color: var(--ailp-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ailp-price__value strong,
.ailp-price__monthly strong {
  color: var(--ailp-navy);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.ailp-price__monthly strong {
  font-size: clamp(18px, 1.6vw, 22px);
}

.ailp-price__includes {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.ailp-price__includes h4 {
  margin: 0;
  color: var(--ailp-navy);
  font-size: 16px;
  font-weight: 900;
}

.ailp-price__group {
  padding-top: 14px;
  border-top: 1px solid var(--ailp-border);
}

.ailp-price__group h5 {
  margin: 0 0 10px;
  color: var(--ailp-navy);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
}

.ailp-price__group ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.25em;
  color: var(--ailp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ailp-price__group li::marker {
  color: var(--ailp-cyan);
}

.ailp-price-note {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 18px;
  background: rgba(244, 252, 255, 0.92);
}

.ailp-price-note p {
  margin: 0;
  color: var(--ailp-muted);
  font-size: 13px;
  line-height: 1.7;
}

.ailp-option-box {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--ailp-border);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff, #f4fcff);
}

.ailp-option-box__head {
  max-width: 820px;
  margin-bottom: 20px;
}

.ailp-option-box__head h3 {
  margin: 0 0 10px;
  color: var(--ailp-navy);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ailp-option-box__head p {
  margin: 0;
  color: var(--ailp-muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.ailp-option-card {
  padding: 20px;
  border: 1px solid var(--ailp-border);
  border-radius: 18px;
  background: #fff;
}

.ailp-option-card h4 {
  margin: 0 0 10px;
  color: var(--ailp-navy);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 900;
}

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

.ailp-option-card__price {
  margin-bottom: 8px !important;
  color: var(--ailp-blue) !important;
  font-size: 18px !important;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .ailp-price-grid--plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .ailp-option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ailp-price-grid--plans,
  .ailp-option-grid {
    grid-template-columns: 1fr;
  }

  .ailp-price-grid--plans .ailp-price,
  .ailp-option-box {
    padding: 22px 18px;
  }

  .ailp-price__summary {
    min-height: 0;
  }
}

/* === AI-LP price plan refinement 20260619 === */
.ailp-price--featured .ailp-price__head {
  padding-right: 84px;
}

.ailp-price--featured::before {
  top: 18px;
  right: 20px;
  z-index: 2;
}

.ailp-price__value strong,
.ailp-price__monthly strong {
  white-space: nowrap;
  font-size: clamp(19px, 1.55vw, 25px);
  letter-spacing: -0.055em;
}

.ailp-price__monthly strong {
  font-size: clamp(18px, 1.35vw, 21px);
}

.ailp-price-standard-report {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  padding: 18px 22px;
  border: 1px solid rgba(20, 184, 166, 0.32);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(236, 253, 245, 0.96), rgba(239, 246, 255, 0.96));
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.ailp-price-standard-report strong {
  flex: 0 0 auto;
  color: var(--ailp-navy);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.ailp-price-standard-report span {
  color: var(--ailp-muted);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
}

@media (max-width: 767px) {
  .ailp-price--featured .ailp-price__head {
    padding-right: 0;
    padding-top: 34px;
  }

  .ailp-price--featured::before {
    top: 18px;
    left: 18px;
    right: auto;
  }

  .ailp-price-standard-report {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
  }
}
