/* ==========================================================================
   ai-chat-lp.css — Edel AI Hybrid Chat LP 専用スタイル
   eai- プレフィックス BEM記法
   ========================================================================== */

/* ------------------------------------------------------------------
   スコープ変数
   ------------------------------------------------------------------ */
#eai-lp {
  --eai-brand:        #21759b;
  --eai-brand-dark:   #1a5e80;
  --eai-dark:         #182640;
  --eai-text:         #182640;
  --eai-muted:        #546e7a;
  --eai-bg:           #f8fafc;
  --eai-surface:      #ffffff;
  --eai-stroke:       #e2e8f0;
  --eai-radius:       12px;
  --eai-radius-lg:    20px;
  --eai-shadow:       0 4px 20px rgba(15, 23, 42, 0.07);
  --eai-shadow-lg:    0 12px 40px rgba(15, 23, 42, 0.12);

  line-height: 1.8;
  color: var(--eai-text);
}

#eai-lp *,
#eai-lp *::before,
#eai-lp *::after {
  box-sizing: border-box;
}

#eai-lp img {
  max-width: 100%;
  height: auto;
  display: block;
}

#eai-lp a {
  color: inherit;
  text-decoration: none;
}

#eai-lp p {
  margin: 0 0 1.4rem;
}

#eai-lp strong {
  font-weight: 700;
}

/* ------------------------------------------------------------------
   セクション共通
   ------------------------------------------------------------------ */
.eai-section {
  padding: 5rem 0;
}

.eai-section--dark {
  background: var(--eai-dark);
  color: #fff;
}

.eai-section--soft {
  background: var(--eai-bg);
}

.eai-section__heading {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.eai-section__lead {
  text-align: center;
  color: var(--eai-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.eai-section--dark .eai-section__heading {
  color: #fff;
}

.eai-section--dark .eai-section__lead {
  color: rgba(255, 255, 255, 0.75);
}

/* ------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------ */
.eai-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 5rem;
  margin-top: calc(-1 * var(--header-h));
  background-image: url('https://images.unsplash.com/photo-1531746790731-6c087fecd65a?auto=format&fit=crop&w=1920&q=80');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

.eai-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  z-index: 1;
}

@media (hover: none) and (pointer: coarse) {
  .eai-hero {
    background-attachment: scroll;
  }
}

.eai-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.eai-eyebrow {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  background: var(--eai-surface);
  color: var(--eai-brand);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid var(--eai-brand);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.eai-hero__title {
  font-size: clamp(1.6rem, 4.2vw, 2.8rem);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: var(--eai-text);
}

.eai-hero__lead {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--eai-muted);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.9;
}

.eai-hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: var(--eai-dark);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(24, 38, 64, 0.3);
}

/* #eai-lp a { color: inherit } の詳細度に対抗するため ID セレクターを付与 */
#eai-lp .eai-hero__cta,
#eai-lp .eai-hero__cta:hover {
  color: #fff;
}

.eai-hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(24, 38, 64, 0.38);
}

.eai-hero__note {
  font-size: 0.78rem;
  color: var(--eai-muted);
  margin: 0.75rem 0 0;
  text-align: center;
}

/* ------------------------------------------------------------------
   ペインポイント（お悩み）
   ------------------------------------------------------------------ */
.eai-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.eai-pain-item {
  background: var(--eai-surface);
  padding: 2rem 1.5rem;
  border-radius: var(--eai-radius);
  box-shadow: var(--eai-shadow);
  border: 1px solid var(--eai-stroke);
  text-align: center;
}

.eai-pain-item__icon {
  font-size: 2.8rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.eai-pain-item__text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

/* ------------------------------------------------------------------
   特長（3つの秘伝）
   ------------------------------------------------------------------ */
.eai-features {
  padding: 5rem 0 3rem;
}

.eai-benefit {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
}

.eai-benefit:nth-child(even) {
  flex-direction: row-reverse;
}

.eai-benefit__content {
  flex: 1;
  position: relative;
}

.eai-benefit__number {
  font-size: 5rem;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  position: absolute;
  top: -2.5rem;
  left: -2rem;
  z-index: 0;
  pointer-events: none;
}

.eai-benefit__title {
  position: relative;
  z-index: 1;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--eai-brand);
  color: var(--eai-text);
}

.eai-benefit__body {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: var(--eai-muted);
  line-height: 1.9;
}

.eai-benefit__body strong {
  color: var(--eai-text);
}

.eai-benefit__img {
  flex: 1;
  border-radius: var(--eai-radius-lg);
  overflow: hidden;
  box-shadow: var(--eai-shadow-lg);
  aspect-ratio: 4 / 3;
}

.eai-benefit__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.eai-benefit__img:hover img {
  transform: scale(1.03);
}

/* ------------------------------------------------------------------
   比較テーブル
   ------------------------------------------------------------------ */
.eai-comparison-wrap {
  overflow-x: auto;
}

.eai-comparison-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: var(--eai-surface);
  border-radius: var(--eai-radius);
  overflow: hidden;
  box-shadow: var(--eai-shadow);
}

.eai-comparison-table th,
.eai-comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--eai-stroke);
  text-align: center;
  vertical-align: middle;
  font-size: 0.9rem;
}

.eai-comparison-table thead th {
  background: var(--eai-bg);
  font-weight: 700;
  color: var(--eai-muted);
}

.eai-comparison-table thead th.eai-col--highlight {
  background: var(--eai-brand);
  color: #fff;
  font-size: 1rem;
}

.eai-comparison-table td.eai-col--highlight {
  background: #f0f9ff;
  font-weight: 700;
  color: var(--eai-brand);
  border-left: 2px solid var(--eai-brand);
  border-right: 2px solid var(--eai-brand);
}

.eai-comparison-table tr:last-child td.eai-col--highlight {
  border-bottom: 2px solid var(--eai-brand);
}

.eai-icon--ok {
  color: var(--eai-brand);
  font-size: 1.2rem;
}

.eai-icon--ng {
  color: #cbd5e1;
  font-size: 1.1rem;
}

/* ------------------------------------------------------------------
   ユースケース
   ------------------------------------------------------------------ */
.eai-cases {
  position: relative;
  padding: 5rem 0;
  background: url('https://images.unsplash.com/photo-1531746790731-6c087fecd65a?auto=format&fit=crop&w=1920&q=80') fixed center / cover no-repeat;
}

.eai-cases::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
}

.eai-cases > .edel-wrap {
  position: relative;
  z-index: 1;
}

@media (hover: none) and (pointer: coarse) {
  .eai-cases {
    background-attachment: scroll;
  }
}

.eai-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.eai-case-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1.75rem;
  border-radius: var(--eai-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.eai-case-card__badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 0.9rem;
}

.eai-case-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--eai-text);
}

.eai-case-card__divider {
  border: none;
  border-top: 1px dashed var(--eai-stroke);
  margin: 0.9rem 0;
}

.eai-case-card__problem,
.eai-case-card__solution {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
  color: var(--eai-text);
}

.eai-case-card__solution .fas {
  color: var(--eai-brand);
  margin-right: 0.3em;
}

/* ------------------------------------------------------------------
   料金テーブル
   ------------------------------------------------------------------ */
.eai-pricing {
  background: var(--eai-dark);
  padding: 5rem 0;
  color: #fff;
}

.eai-pricing__heading {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 0.75rem;
}

.eai-pricing__lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.eai-pricing__table-wrap {
  overflow-x: auto;
}

.eai-pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--eai-radius);
  overflow: hidden;
  color: #334155;
}

.eai-pricing-table th,
.eai-pricing-table td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--eai-stroke);
  text-align: center;
  vertical-align: middle;
  font-size: 0.88rem;
}

.eai-pricing-table thead th {
  background: var(--eai-bg);
  font-weight: 700;
  color: var(--eai-muted);
}

.eai-pricing-table thead th.eai-col--popular {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 1rem;
  border-top: 4px solid #0284c7;
}

.eai-pricing-table td.eai-col--popular {
  background: #fafcff;
  border-left: 2px solid #0284c7;
  border-right: 2px solid #0284c7;
}

.eai-pricing-table tr:last-child td.eai-col--popular {
  border-bottom: 2px solid #0284c7;
}

.eai-pricing-table td[style*="font-weight:700"],
.eai-pricing-table td strong {
  font-weight: 700;
}

.eai-pricing__notes {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--eai-radius);
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.75;
}

.eai-pricing__notes p {
  margin: 0 0 1rem;
}

.eai-pricing__notes p:last-child {
  margin-bottom: 0;
}

.eai-pricing__notes strong {
  color: #fff;
}

.eai-pricing__notes__sep {
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  margin: 1rem 0;
}

/* ------------------------------------------------------------------
   技術仕様
   ------------------------------------------------------------------ */
.eai-specs {
  padding: 4rem 0;
  background: var(--eai-surface);
}

.eai-specs__inner {
  max-width: 800px;
  margin: 0 auto;
}

.eai-specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.eai-specs__item {
  background: var(--eai-bg);
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: 'SFMono-Regular', Consolas, monospace;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.eai-specs__item dt {
  font-weight: 700;
  color: var(--eai-muted);
  white-space: nowrap;
}

.eai-specs__item dd {
  font-weight: 700;
  color: var(--eai-text);
  margin: 0;
  text-align: right;
}

/* ------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------ */
.eai-faq {
  background: var(--eai-bg);
  padding: 5rem 0;
}

/* ------------------------------------------------------------------
   デモセクション
   ------------------------------------------------------------------ */
.eai-demo {
  background: var(--eai-dark);
  padding: 5rem 0;
  color: #fff;
}

.eai-demo__heading {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  text-align: center;
  color: #fff;
  margin-bottom: 0.75rem;
}

.eai-demo__lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.eai-demo__lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

/* デモステップテーブル */
.eai-step-table-wrap {
  max-width: 900px;
  margin: 0 auto 3rem;
  overflow-x: auto;
}

.eai-step-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--eai-radius);
  overflow: hidden;
  color: #fff;
}

.eai-step-table th,
.eai-step-table td {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: middle;
  font-size: 0.9rem;
}

.eai-step-table thead th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 700;
}

.eai-step-table thead th:first-child {
  width: 22%;
  text-align: center;
}

.eai-step-table tbody th {
  text-align: center;
  font-weight: 700;
  background: transparent;
  white-space: nowrap;
  width: 22%;
}

/* デモ詳細カード */
.eai-demo__detail-heading {
  max-width: 900px;
  margin: 3rem auto 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  padding-left: 1rem;
  border-left: 4px solid #fff;
}

.eai-demo-steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.eai-demo-step {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.75rem;
  border-radius: var(--eai-radius);
}

.eai-demo-step__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.eai-demo-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.9rem;
  line-height: 1.5;
}

.eai-demo-step__body {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin: 0;
}

/* 資料情報ボックス */
.eai-demo-info {
  max-width: 900px;
  margin: 2.5rem auto 0;
  background: #fff;
  color: var(--eai-text);
  border-radius: var(--eai-radius);
  padding: 2.5rem;
}

.eai-demo-info__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--eai-text);
  margin: 0 0 1rem;
  padding-left: 0.75rem;
  border-left: 4px solid var(--eai-brand);
}

.eai-demo-info__title--second {
  margin-top: 2rem;
}

.eai-demo-info p,
.eai-demo-info ul {
  font-size: 0.9rem;
  color: var(--eai-muted);
  line-height: 1.8;
  margin: 0 0 0.5rem;
}

.eai-demo-info ul {
  padding-left: 1.4rem;
  list-style: disc;
}

.eai-demo-info li {
  margin-bottom: 0.35rem;
}

.eai-demo-info strong {
  color: var(--eai-text);
}

/* 注意書きボックス */
.eai-demo-caution {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

.eai-demo-caution__title {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.eai-demo-caution__title .fas {
  margin-right: 0.4em;
}

.eai-demo-caution ul {
  padding-left: 1.4rem;
  list-style: disc;
  margin: 0;
}

.eai-demo-caution li {
  margin-bottom: 0.3rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------------
   お問い合わせ / CTA
   ------------------------------------------------------------------ */
.eai-contact {
  padding: 4rem 0 6rem;
}

.eai-cta-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--eai-bg);
  border: 1px solid var(--eai-stroke);
  border-radius: var(--eai-radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}

.eai-cta-box__heading {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.eai-cta-box__lead {
  font-size: 0.92rem;
  color: var(--eai-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.eai-form-area {
  margin-top: 2.5rem;
  text-align: left;
  background: var(--eai-surface);
  padding: 2.5rem;
  border-radius: var(--eai-radius);
  box-shadow: var(--eai-shadow);
  border: 1px solid var(--eai-stroke);
}

.eai-form-note {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 1.25rem;
  text-align: center;
}

/* CF7 スタイル */
#eai-lp .wpcf7-form p {
  margin-bottom: 1.25rem;
}

#eai-lp .wpcf7-text,
#eai-lp .wpcf7-textarea,
#eai-lp .wpcf7-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  background: var(--eai-bg);
  transition: border-color 0.2s;
}

#eai-lp .wpcf7-text:focus,
#eai-lp .wpcf7-textarea:focus,
#eai-lp .wpcf7-select:focus {
  outline: none;
  border-color: var(--eai-brand);
}

/* select 専用 */
#eai-lp .wpcf7-select {
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1rem;
  cursor: pointer;
}

#eai-lp .wpcf7-submit {
  width: 100%;
  padding: 1rem;
  background: var(--eai-dark);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: opacity 0.2s;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
}

#eai-lp .wpcf7-submit:hover {
  opacity: 0.88;
}

#eai-lp div.wpcf7-response-output {
  border: none !important;
  border-radius: 8px;
  padding: 1.25rem !important;
  margin: 1.5rem 0 0 !important;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
}

#eai-lp form.sent div.wpcf7-response-output {
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0 !important;
}

#eai-lp form.invalid div.wpcf7-response-output,
#eai-lp form.failed div.wpcf7-response-output {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca !important;
}

.eai-required {
  color: #ef4444;
  margin-left: 4px;
  font-weight: normal;
  background: #fee2e2;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.72rem;
}

.eai-optional {
  color: #64748b;
  margin-left: 4px;
  font-weight: normal;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.72rem;
}

/* ------------------------------------------------------------------
   フッター CTA
   ------------------------------------------------------------------ */
.eai-footer-cta {
  display: none;
  position: relative;
  padding: 6rem 0;
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.eai-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(24, 38, 64, 0.88);
  z-index: 1;
}

@media (hover: none) and (pointer: coarse) {
  .eai-footer-cta {
    background-attachment: scroll;
  }
}

.eai-footer-cta__inner {
  position: relative;
  z-index: 2;
}

.eai-footer-cta__heading {
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.eai-footer-cta__lead {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
}

.eai-footer-cta__btn {
  display: inline-block;
  background: #fff;
  color: var(--eai-dark);
  padding: 1.1rem 2.75rem;
  font-weight: 700;
  border-radius: 999px;
  transition: opacity 0.2s;
}

.eai-footer-cta__btn:hover {
  opacity: 0.88;
}

/* ------------------------------------------------------------------
   レスポンシブ
   ------------------------------------------------------------------ */
@media (max-width: 900px) {
  .eai-benefit {
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .eai-case-grid {
    grid-template-columns: 1fr;
  }

  .eai-demo-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .eai-section {
    padding: 3.5rem 0;
  }

  .eai-hero {
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 3.5rem;
  }

  .eai-pain-grid {
    grid-template-columns: 1fr;
  }

  .eai-cta-box {
    padding: 2rem 1.25rem;
  }

  .eai-form-area {
    padding: 1.5rem;
  }

  .eai-specs__grid {
    grid-template-columns: 1fr;
  }

  .eai-demo-info {
    padding: 1.5rem;
  }

  .eai-features {
    padding: 3.5rem 0 1.5rem;
  }
}
