:root {
  /* カラーパレット（CLAUDE.md 参照） */
  --color-primary: #2C5F6E;
  --color-primary-light: #3F8A9B;
  --color-accent: #F0EA3D;
  --color-accent-2: #F4A989;
  --color-bg-light: #E9F4F2;
  --color-bg: #FBF9F4;
  --color-text: #16282C;
  --color-text-muted: #5C7176;
  --color-text-light: #FFFFFF;

  /* タイポグラフィ */
  --font-base: 'Zen Kaku Gothic New', sans-serif;
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* レイアウト */
  --max-width: 1080px;
  --breakpoint-sm: 768px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* セクション共通 */
header,
section,
footer {
  padding: 64px 0;
}

.bg-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.bg-light {
  background-color: var(--color-bg-light);
}

.highlight {
  color: var(--color-accent);
}

/* ===== キーフレーム ===== */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* アイコン */
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon--play {
  fill: currentColor;
  stroke: none;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--accent {
  position: relative;
  overflow: hidden;
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(44, 95, 110, 0.25);
}

.btn--accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(44, 95, 110, 0.35);
}

.btn--accent:hover::before {
  left: 125%;
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* 見出し（バッジ型） */
.section-title {
  position: relative;
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 32px 10px 44px;
  border-radius: 999px;
  margin-bottom: 40px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--color-accent);
}

.section-title--center {
  display: block;
  text-align: center;
  width: fit-content;
  margin: 0 auto 40px;
}

/* 見出し（リード文型） */
.section-title-lead {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* シーンタグ（モノスペース・装飾ラベル） */
.scene-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 20px;
}

.scene-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--color-primary-light);
  flex-shrink: 0;
}

.scene-tag--center {
  justify-content: center;
}

.scene-tag--center::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: var(--color-primary-light);
  flex-shrink: 0;
}

.scene-tag--on-dark {
  color: rgba(255, 255, 255, 0.55);
}

.scene-tag--on-dark::before,
.scene-tag--on-dark::after {
  background-color: rgba(255, 255, 255, 0.3);
}

/* REC バッジ */
.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.rec-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent-2);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

/* ビューファインダー風コーナーフレーム */
.frame-corners {
  position: absolute;
  inset: 16px;
  pointer-events: none;
  z-index: 2;
}

.frame-corners__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-accent);
}

.frame-corners__corner--tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.frame-corners__corner--tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.frame-corners__corner--bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.frame-corners__corner--br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* ノイズ・テクスチャ（暗色セクション共通） */
.impact::after,
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ページトップへ戻るボタン */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 4px 12px rgba(44, 95, 110, 0.3);
  z-index: 90;
}

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

.to-top:hover {
  transform: translateY(-2px);
}

.to-top:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== ナビゲーション ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-bg-light);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.navbar__logo img {
  height: 48px;
  width: auto;
}

.navbar__cta {
  white-space: nowrap;
}

/* ===== 1. ヘッダー / ファーストビュー ===== */
.hero {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1C3F4A 100%);
  color: var(--color-text-light);
  overflow: hidden;
  padding: 56px 0 144px;
  margin-bottom: 0;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 40px);
  opacity: 0.4;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.rec-badge,
.hero__eyebrow,
.hero__title,
.hero__lead,
.hero__cta {
  animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.rec-badge { animation-delay: 0s; }
.hero__eyebrow { animation-delay: 0.08s; }
.hero__title { animation-delay: 0.16s; }
.hero__lead { animation-delay: 0.3s; }
.hero__cta { animation-delay: 0.42s; }

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero__lead {
  font-size: 1.05rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero__filmline {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== 2. お悩みセクション ===== */
.problems {
  position: relative;
  z-index: 1;
  padding-top: 128px;
}

.problems__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}

.problems__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background-color: var(--color-bg-light);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.problems__item:hover {
  background-color: #DCEEEB;
  transform: translateX(4px);
}

.problems__item .icon {
  color: var(--color-primary-light);
}

/* ===== 3. 「3秒」インパクトセクション ===== */
.impact {
  position: relative;
  z-index: 2;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 48px));
  margin-bottom: -48px;
  padding-bottom: 96px;
}

.impact__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  text-align: left;
}

.impact__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.impact__number {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 900;
  line-height: 1;
}

.impact__unit {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: -8px;
}

.impact__text {
  position: relative;
  z-index: 2;
  font-size: 1.15rem;
  font-weight: 700;
  max-width: 520px;
}

/* ===== 4. ソリューション訴求 ===== */
.solution {
  position: relative;
  z-index: 1;
  padding-top: 112px;
}

.solution__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solution__card {
  background-color: var(--color-bg-light);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(16, 43, 51, 0.12);
}

.solution__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.solution__icon .icon {
  width: 32px;
  height: 32px;
}

.solution__card p {
  font-weight: 700;
  font-size: 1.05rem;
}

/* ===== 5. Orgaの展示会映像でできること ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background-color: var(--color-bg);
  border-radius: 16px;
  padding: 40px 24px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(44, 95, 110, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(16, 43, 51, 0.14);
}

.feature-card__number {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(44, 95, 110, 0.15);
  z-index: 0;
}

.feature-card__icon,
.feature-card__title {
  position: relative;
  z-index: 1;
}

.feature-card__icon {
  color: var(--color-primary-light);
  margin: 16px auto;
}

.feature-card__icon .icon {
  width: 48px;
  height: 48px;
}

.feature-card__title {
  font-weight: 700;
  font-size: 1.05rem;
}

/* ===== 6. 制作事例 ===== */
.case-study__card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background-color: var(--color-bg-light);
  border-radius: 16px;
  overflow: hidden;
}

.case-study__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}

.case-study__media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.case-study__play {
  color: var(--color-text-light);
  opacity: 0.9;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s ease;
}

.case-study__play .icon {
  width: 52px;
  height: 52px;
}

.case-study__media:hover .case-study__play {
  transform: scale(1.08);
}

.case-study__info {
  padding: 32px 24px;
}

.case-study__company {
  font-size: 1.3rem;
  font-weight: 700;
}

.case-study__category {
  color: var(--color-primary-light);
  font-weight: 700;
  margin-bottom: 24px;
}

.case-study__qr {
  display: flex;
  align-items: center;
  gap: 16px;
}

.case-study__qr-img {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  padding: 4px;
  background-color: var(--color-bg);
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
}

.case-study__qr p {
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== 7. 料金プラン ===== */
.pricing__card {
  max-width: 640px;
  margin: 0 auto;
  background-color: var(--color-bg);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(44, 95, 110, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 43, 51, 0.16);
}

.pricing__name {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.pricing__desc {
  margin-bottom: 24px;
  font-weight: 700;
}

.pricing__price {
  margin-bottom: 24px;
}

.pricing__label {
  font-size: 1rem;
  font-weight: 700;
}

.pricing__amount {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--color-primary);
}

.pricing__unit {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.pricing__tax {
  font-size: 1rem;
  margin-left: 8px;
}

.pricing__notes {
  text-align: left;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  border-top: 1px solid #ddd;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ===== 8. スケジュール ===== */
.schedule {
  position: relative;
  z-index: 1;
}

.schedule__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.schedule__list::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--color-bg-light);
  z-index: 0;
}

.schedule__item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.schedule__step {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--color-accent-2);
  margin-bottom: 4px;
}

.schedule__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}

.schedule__icon .icon {
  width: 32px;
  height: 32px;
}

.schedule__item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.schedule__item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.schedule__note {
  text-align: center;
  background-color: var(--color-bg-light);
  border-radius: 12px;
  padding: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ===== 8.5 よくあるご質問 ===== */
.faq {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  background-color: var(--color-bg-light);
  border-radius: 12px;
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
}

.faq__label--q {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.faq__label--a {
  background-color: var(--color-accent-2);
  color: var(--color-primary);
}

.faq__toggle {
  margin-left: auto;
  color: var(--color-primary-light);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 24px 20px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ===== 9. CTA / フッター ===== */
.footer {
  position: relative;
  z-index: 2;
  clip-path: polygon(0 56px, 100% 0, 100% 100%, 0 100%);
  margin-top: -56px;
  padding-top: 120px;
}

.footer__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer__catch {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 32px;
}

/* お問い合わせフォーム */
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-form__required,
.contact-form__optional {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 999px;
}

.contact-form__required {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.contact-form__optional {
  background-color: rgba(255, 255, 255, 0.15);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-text-light);
  font-family: var(--font-base);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: rgba(255, 255, 255, 0.14);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__botcheck {
  display: none;
}

.contact-form__submit {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form__status {
  margin-top: 16px;
  font-weight: 700;
  text-align: center;
}

.contact-form__status--success {
  color: var(--color-accent);
}

.contact-form__status--error {
  color: var(--color-accent-2);
}

.footer__company {
  margin-bottom: 24px;
}

.footer__company p {
  font-size: 0.95rem;
}

.footer__company a {
  text-decoration: underline;
}

.footer__copyright {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ===== レスポンシブ（モバイル） ===== */
@media (max-width: 768px) {
  header,
  section,
  footer {
    padding: 40px 0;
  }

  .hero {
    padding: 40px 0 96px;
    margin-bottom: 0;
  }

  .hero__filmline {
    display: none;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .problems {
    padding-top: 72px;
  }

  .impact {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 24px));
    margin-bottom: -24px;
  }

  .impact__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .impact__number {
    font-size: 5rem;
  }

  .solution {
    padding-top: 64px;
  }

  .solution__grid,
  .features__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing__amount {
    font-size: 4.5rem;
  }

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

  .schedule__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .schedule__list::before {
    display: none;
  }

  .faq {
    padding-bottom: 68px;
  }

  .faq__question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq__answer {
    padding: 0 20px 16px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .footer {
    clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
    margin-top: -28px;
    padding-top: 68px;
  }

  .section-title {
    white-space: normal;
    max-width: calc(100vw - 32px);
    text-align: center;
    font-size: 1rem;
    padding: 8px 24px 8px 36px;
  }
}
