@import url(./untility.css);
/* ============================================================
   With AI アカデミー — style.css (Figma FIX版)
   ============================================================ */

:root {
  --color-nyle-green:    #95FF00;
  --color-nyle-green-10: #F4FFE6;
  --color-nyle-skyblue:  #14EDFF;
  --color-line-green:    #06C755;
  --color-black:         #000000;
  --color-white:         #FFFFFF;

  --grd-blue:  linear-gradient(119.77deg, #5782D9 4.47%, #00146D 101.56%);
  --grd-orange: linear-gradient(146.23deg, #FF7C44 6.69%, #D97757 108.76%);

  --radius-card-lg: 30px;
  --radius-card-sm: 16px;
  --radius-btn:     60px;

  --shadow-card:    0px 0px 30px 0px rgba(0,0,0,0.25);
  --shadow-card-sm: 0px 0px 10px 0px rgba(0,0,0,0.25);

  --content-width: 1000px;
  --page-width:    1440px;
  --card-padding:  44px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LINE CTA Button ── */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-line-green);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 5px 0 0 #AEFFCF;
}
.btn-line:hover { opacity: 0.9; box-shadow: 0 4px 20px rgba(6,199,85,0.4); }
.btn-line--lg {
  padding: 11px 30px 10px 11px;
  font-size: 17px;
}
.btn-line__icon {
  width: 59px;
  height: 59px;
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 742px;
  overflow: hidden;
}

/* Hero background image */
.hero__photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg-pc.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 46px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.hero__logo {
  margin-bottom: 68px;
}
.hero__logo-img {
  height: 36px;
  width: auto;
}

/* Hero content wrapper */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Title */
.hero__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}

/* Subtitle */
.hero__subtitle {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  margin-bottom: 32px;
}

/* Release text */
.hero__release {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

/* Speech bubble with text inside */
.hero__bubble {
  position: relative;
  width: 339px;
  height: 52px;
  flex-shrink: 0;
  margin-bottom: 5px;
}
.hero__bubble-img {
  position: absolute;
  inset: 0;
  width: 339px;
  height: 52px;
  display: block;
}
.hero__release {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px; /* 矩形部分のみ（下12pxは三角矢印）*/
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/* Fine print */
.hero__fineprintgroup {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.6;
  margin-top: 16px;
}

/* ============================================================
   MAIN CARD
   ============================================================ */
.main-card {
  width: var(--content-width);
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  margin-top: -112px; /* Overlap hero */
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.section-pain {
  padding: 60px var(--card-padding) 48px;
}
.section-pain__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  padding-top: 23px; /* 吹き出しのはみ出し分を確保 */
}

.pain-card {
  position: relative;
  height: 329px;
  border-radius: var(--radius-card-sm);
  /* overflow: hidden を外して吹き出しを上にはみ出させる */
}

.pain-card__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-card-sm); /* 角丸をここで適用 */
}

.pain-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(217,217,217,0) 22%, #000 100%);
  mix-blend-mode: multiply;
  border-radius: var(--radius-card-sm);
}

/* Speech bubble label — 23px上にはみ出す（Figma: card y=818, bubble y=795） */
.pain-card__label {
  position: absolute;
  top: -23px;
  left: 0;
  right: 0;
  height: 116.75px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.pain-card__bubble {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 238px;
  height: 116.75px;
  display: block;
}
.pain-card__label-text {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  text-align: center;
  /* 下部の三角矢印分(約16px)を除いた矩形内に収める */
  padding-bottom: 20px;
  line-height: 1.3;
}

.pain-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 24px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
}

/* ============================================================
   AI GAP CALLOUT
   ============================================================ */
.ai-gap__arrow {
  display: flex;
  justify-content: center;
  padding: 20px 0 32px;
}
.ai-gap__arrow img {
  width: 36px;
  height: auto;
}

.ai-gap {
  padding: 0 var(--card-padding) 60px;
  display: flex;
  justify-content: center;
}

.ai-gap__box {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 500px;
  padding: 26px 0;
  text-align: center;
}

/* Corner brackets — top-left (::before) + bottom-right (::after) */
.ai-gap__box::before,
.ai-gap__box::after {
  content: '';
  position: absolute;
  width: 52px;
  height: 52px;
}
.ai-gap__box::before {
  top: 0; left: 0;
  border-top: 6px solid var(--color-nyle-green);
  border-left: 6px solid var(--color-nyle-green);
}
.ai-gap__box::after {
  bottom: 0; right: 0;
  border-bottom: 6px solid var(--color-nyle-green);
  border-right: 6px solid var(--color-nyle-green);
}

/* Corner brackets — top-right + bottom-left (span elements) */
.ai-gap__corner {
  position: absolute;
  width: 52px;
  height: 52px;
  pointer-events: none;
}
.ai-gap__corner--tr {
  top: 0; right: 0;
  border-top: 6px solid var(--color-nyle-green);
  border-right: 6px solid var(--color-nyle-green);
}
.ai-gap__corner--bl {
  bottom: 0; left: 0;
  border-bottom: 6px solid var(--color-nyle-green);
  border-left: 6px solid var(--color-nyle-green);
}

.ai-gap__body span{
  background: var(--color-nyle-green);
}

.ai-gap__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.ai-gap__body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  position: relative;
  z-index: 1;
}


/* ============================================================
   FEATURES SECTION
   ============================================================ */
.section-features {
  padding: 60px 0 0;
}

.section-features__title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 12px;
  padding: 0 var(--card-padding);
}

.section-features__sub {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 var(--card-padding);
}

/* Feature 2 を Feature 1 に重ねる（斜め画像の白い隙間を消す） */
.feature-panel + .feature-panel {
  margin-top: -130px;
}

/* Feature panel (full-width photo background) */
.feature-panel {
  position: relative;
  width: 100%;
  min-height: 584px;
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.feature-panel--1{
  background: url("../images/feature-bg.png") no-repeat center;
  @media (max-width: 768px) {
    background: url("../images/feature-bg-sp.png") no-repeat top center/contain;
    padding-top:400px
  }
}

.feature-panel--2{
  background: url("../images/feature2-bg.png") no-repeat center;
  @media (max-width: 768px) {
    background: url("../images/feature2-bg-sp.png") no-repeat top center/contain;
    padding-top:400px
  }
}

.feature-panel__photo {
  position: absolute;
  inset: 0;
  display: flex;
}

.feature-panel__photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}

.feature-panel__content {
  position: relative;
  z-index: 1;
  margin:150px 0 0 150px;
  max-width: 50%;
}

.feature-panel__eyebrow {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.feature-panel__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
  @media (max-width: 768px) {
    color: #000;
  }
}

.feature-panel__body {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 32px;
  @media (max-width: 768px) {
    color: #000;
  }
}

/* Claude Code badge */
.feature-panel__badge {
  position: absolute;
  top: 60px;
  right: var(--card-padding);
  z-index: 2;
  width: 119px;
  height: 119px;
  border-radius: 10px;
  background: linear-gradient(121.41deg, #FF7C44 6.69%, #D97757 108.76%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

/* Feature 2: コンテンツ幅をフェーズカード分（687px）確保 */
.feature-panel--2 .feature-panel__content {
  max-width: 80%;
}
.feature-panel--2 .feature-panel__body {
  max-width: 334px;
}

/* Feature 2 phase cards */
.feature-phases {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  width: 687px;
}
.feature-phase {
  flex: 1;
  border-radius: var(--radius-card-sm);
  padding: 20px 24px;
}
.feature-phase--orange { background: linear-gradient(121.65deg, #FF832A 0.38%, #B20000 110.66%); }
.feature-phase--blue   { background: linear-gradient(120.85deg, #43ADFF 0.54%, #004799 110.75%); }
.feature-phase__label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}
.feature-phase__body {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  text-align: left;
}

/* Automation examples */
.automation-examples {
  display: flex;
  gap: 16px;
}
.automation-item {
  width: 108px;
  height: 108px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
}
.automation-item__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.automation-item--green  { background: linear-gradient(133.79deg, #00FF88 1.89%, #276400 107.42%); }
.automation-item--orange { background: linear-gradient(121.65deg, #FF832A 0.38%, #B20000 110.66%); }
.automation-item--blue   { background: linear-gradient(120.85deg, #43ADFF 0.54%, #004799 110.75%); }

/* ============================================================
   SCHEDULE SECTION
   ============================================================ */
.section-schedule {
  padding: 60px var(--card-padding) 48px;
  text-align: center;
}

.section-schedule__title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.section-schedule__period {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 28px;
}

/* 矢印シェブロン形状のスケジュールボックス */
.schedule-boxes {
  display: flex;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.schedule-box {
  flex: 1;
  padding: 24px 48px 24px 36px;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}

/* 左ボックス（オレンジ）: 右端を矢印に */
.schedule-box--orange {
  background: var(--grd-orange);
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%);
  z-index: 1;
  padding-right: 64px;
  margin-right:-24px;
  @media (max-width: 768px) {
    margin-right:0;
  }
}

/* 右ボックス（ブルー）: 左端をV字ノッチでオレンジ矢印を受ける */
.schedule-box--blue {
  background: var(--grd-blue);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 32px 50%);
  margin-left: -2px;
  padding-left: 64px;
}

.schedule-box__phase {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.schedule-box__label {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.schedule-box__duration {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.section-comparison {
  padding: 48px var(--card-padding) 60px;
}

.section-comparison__title {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  text-align: center;
}

.comparison-table {
  width: 682px;
  margin: 0 auto;
}

.comparison-row {
  display: grid;
  grid-template-columns: 159fr 257fr 257fr;
  gap: 0;
}

.comparison-row + .comparison-row {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Header row */
.comparison-row--header {}

.comparison-cell--label-header,
.comparison-cell--ours-header,
.comparison-cell--other-header {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding: 0 16px;
  height: 32px;
  display: flex;
  align-items: center;
}
.comparison-cell--label-header { background: #909090; color: #fff; justify-content: center; }
.comparison-cell--ours-header  { background: var(--color-nyle-green); color: #000; justify-content: center; }
.comparison-cell--other-header { background: #909090; color: #fff; justify-content: center; }

/* Body cells */
.comparison-cell--label,
.comparison-cell--ours,
.comparison-cell--other {
  font-size: 16px;
  padding: 12px 16px;
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  gap: 2px;
}
.comparison-cell--label { background: #909090; color: #fff; font-weight: 700; align-items: flex-start; padding-left: 24px; }
.comparison-cell--ours  { background: var(--color-nyle-green-10); color: #000; }
.comparison-cell--other { background: #F4F4F4; color: #000; }

.comparison-mark {
  font-size: 16px;
  font-weight: 700;
}
.comparison-mark--good { color: #000; }
.comparison-mark--bad  { color: red; }
.comparison-mark--warn { color: #FF8C00; }

/* ============================================================
   AI LABEL SECTION
   ============================================================ */
.section-label {
  padding: 60px var(--card-padding);
  text-align: center;
}

.section-label__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.section-about {
  padding: 0 var(--card-padding) 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.about-panel {
  border-radius: 0;
  overflow: hidden;
  height: 360px;
  display: flex;
  flex-direction: column;
}

.about-panel__header {
  padding: 14px 24px;
  height: 53px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.about-panel__header h3 {
  font-size: 22px;
  font-weight: 700;
}
.about-panel__header--green {
  background: linear-gradient(to right, #D4FF98, #93FF00);
  color: #000;
}
.about-panel__header--blue {
  background: linear-gradient(165.32deg, #5782D9 4.47%, #00146D 101.56%);
  color: #fff;
}

.about-panel__body {
  background: rgba(217,217,217,0.2);
  padding: 24px;
  flex: 1;
  overflow: hidden;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}
.about-list__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-panel__footer {
  background: rgba(217,217,217,0.2);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-align: center;
}
.about-panel__footer p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #000;
}
.about-panel--mentor .about-panel__footer p { font-weight: 700; }

/* ============================================================
   PRICING / CTA SECTION
   ============================================================ */
.section-pricing {
  background: linear-gradient(119.77deg, #5782D9 4.47%, #00146D 101.56%);
  padding: 64px var(--card-padding) 60px;
}

.section-pricing__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 48px;
}

/* Benefit cards */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-bottom: 48px;
}

.benefit-card {
  background: #fff;
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card-sm);
  min-height: 288px;
  display: flex;
  flex-direction: column;
}

.benefit-card__header {
  background: var(--color-nyle-skyblue);
  padding: 16px 20px;
  min-height: 93px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.benefit-card__label {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  line-height: 1.3;
}
.benefit-card__sublabel {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.benefit-card__body {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
  flex: 1;
}

/* Pricing CTA area */
.pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pricing-cta__note1,
.pricing-cta__note2 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}

.pricing-cta__release {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin-top: 8px;
}

.pricing-cta__bubble {
  position: relative;
  width: 339px;
  height: 52px;
  flex-shrink: 0;
}
.pricing-cta__bubble-img {
  position: absolute;
  inset: 0;
  width: 339px;
  height: 52px;
  display: block;
}
.pricing-cta__release {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.pricing-cta__fineprint {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.6;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  border-radius: 0 0 var(--radius-card-lg) var(--radius-card-lg);
}
.site-footer__links,
.site-footer__copy {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}

/* ============================================================
   RESPONSIVE — SP (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  :root {
    --card-padding: 20px;
  }

  /* Hero */
  .hero { min-height: 600px; }
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 14px; }
  .hero__logo-icon, .hero__logo-text { height: 28px; }
  .btn-line--lg { font-size: 14px; }
  .btn-line__icon { width: 44px; height: 44px; }

  /* Main card */
  .main-card { width: 100%; border-radius: 20px; margin-top: -60px; }

  /* Pain */
  .section-pain__title { font-size: 22px; }
  .pain-cards { grid-template-columns: 1fr; gap: 16px; }
  .pain-card { height: 260px; }

  /* AI Gap */
  .ai-gap__box { padding: 24px 20px; }
  .ai-gap__box::before, .ai-gap__box::after,
  .ai-gap__corner { width: 36px; height: 36px; }
  .ai-gap__title { font-size: 16px; }
  .ai-gap__highlight-bar--1 { width: 200px; }
  .ai-gap__highlight-bar--2 { width: 160px; }

  /* Features */
  .section-features__title { font-size: 22px; }
  .section-features__sub { font-size: 18px; }
  .feature-panel { min-height: 400px; }
  .feature-panel__content { max-width: 100%; padding: 40px var(--card-padding); }
  .feature-panel__badge { display: none; }
  .automation-examples { flex-wrap: wrap; }
  .feature-phases { flex-direction: column; }

  /* Schedule */
  .schedule-boxes { flex-direction: column; max-width: 100%; }
  .schedule-box--orange { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 50% 100%, 0 calc(100% - 24px)); padding: 24px 36px 48px; }
  .schedule-box--blue   { clip-path: polygon(0 24px, 50% 0, 100% 24px, 100% 100%, 0 100%); margin-left: 0; margin-top: -2px; padding: 48px 36px 24px; }

  /* Comparison */
  .comparison-row { grid-template-columns: 110px 1fr 1fr; }
  .comparison-cell--label,
  .comparison-cell--label-header { font-size: 13px; }
  .comparison-cell--ours,
  .comparison-cell--other,
  .comparison-cell--ours-header,
  .comparison-cell--other-header { font-size: 13px; }

  /* AI label */
  .section-label__title { font-size: 22px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .section-pricing__title { font-size: 22px; }
  .benefit-cards { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer { height: auto; padding: 12px 20px; flex-direction: column; gap: 6px; border-radius: 0 0 20px 20px; }
}
