/* ============================================
   SYMMETRY Lab - LP (Landing Page) Styles
   bizreach風 高コンバージョンデザイン
   ============================================ */

/* --- LP Custom Properties --- */
:root {
  /* ===== Tiffany Blue × Gray × White Palette ===== */
  --lp-tiffany: #36C9E6;            /* ブランドブルー */
  --lp-tiffany-dark: #1FA8C4;       /* 濃いブルー（CTA・ホバー） */
  --lp-tiffany-light: #B2C4CD;      /* ブランドグレー */
  --lp-tiffany-bg: #EBF9FC;         /* 背景用極薄ブルー */

  --lp-gray-900: #1F2937;           /* 本文最濃 */
  --lp-gray-800: #374151;           /* 見出し */
  --lp-gray-700: #4B5563;
  --lp-gray-500: #6B7280;           /* サブテキスト */
  --lp-gray-300: #D1D5DB;
  --lp-gray-200: #E5E7EB;           /* 枠線 */
  --lp-gray-100: #F3F4F6;           /* 薄背景 */
  --lp-gray-50:  #F9FAFB;           /* ごく薄背景 */

  /* 既存エイリアス（後方互換） */
  --lp-primary: #1F2937;            /* 見出し・本文の主色（ダークグレー） */
  --lp-primary-dark: #111827;
  --lp-accent: #36C9E6;              /* ブランドブルー */
  --lp-accent-hover: #1FA8C4;
  --lp-cta: #36C9E6;
  --lp-cta-hover: #1FA8C4;
  --lp-bg: #FFFFFF;
  --lp-bg-alt: #F9FAFB;
  --lp-bg-dark: #1F2937;
  --lp-text: #1F2937;
  --lp-text-light: #6B7280;
  --lp-border: #E5E7EB;
  --lp-success: #36C9E6;
  --lp-yellow: #F4C430;
}

/* --- LP Reset --- */
.lp-page {
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--lp-text);
  line-height: 1.8;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
  background: var(--lp-gray-100);
}

/* リセットはstyle.cssで実施済み */

.lp-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ヘッダー（ミニマル・固定型） ===== */
.lp-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-gray-200);
  z-index: 100;
  padding: 16px 0;
}

.lp-header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.lp-logo img {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .lp-logo img {
    height: 28px;
  }
}

.lp-header-cta {
  background: var(--lp-tiffany);
  color: #FFFFFF;
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.lp-header-cta:hover {
  background: var(--lp-tiffany-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 186, 181, 0.25);
}

/* ===== ヒーローセクション（カード型） ===== */
.lp-hero {
  background: transparent;
  color: var(--lp-gray-900);
  padding: 12px 40px 12px;
  position: relative;
}

.lp-hero-inner::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--lp-tiffany-bg) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.lp-hero-copy,
.lp-hero-form {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}

.lp-hero-form-card {
  width: 100%;
  box-sizing: border-box;
}

.lp-hero-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 24px 24px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 10px 40px rgba(17, 24, 39, 0.05);
  overflow: hidden;
}

.lp-hero-copy {
  position: relative;
}

/* ===== ヒーロー実績プルーフ ===== */
.lp-hero-proofs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.lp-hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--lp-tiffany-bg);
  border-radius: 8px;
  min-width: 0;
}

.lp-hero-proof-num {
  font-size: 24px;
  font-weight: 300;
  color: var(--lp-tiffany-dark);
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: "Inter", sans-serif;
  flex-shrink: 0;
  min-width: 48px;
}

.lp-hero-proof-num span {
  font-size: 12px;
  margin-left: 2px;
  font-weight: 400;
}

.lp-hero-proof-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.lp-hero-proof-label strong {
  font-size: 11px;
  color: var(--lp-gray-900);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.lp-hero-proof-label span {
  font-size: 9px;
  color: var(--lp-gray-500);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .lp-hero-proofs {
    grid-template-columns: 1fr;
  }
}

/* ===== ヒーロー申込フォーム ===== */
.lp-hero-form-card {
  background: #FFFFFF;
  border: 1px solid var(--lp-gray-200);
  border-radius: 8px;
  padding: 16px 20px 20px;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.08);
  position: sticky;
  top: 100px;
}

.lp-hero-form-card .lp-form-group {
  margin-bottom: 8px;
}

.lp-hero-form-header {
  text-align: center;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--lp-gray-200);
}

.lp-hero-form-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-tiffany-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
}

.lp-hero-form-badge::before,
.lp-hero-form-badge::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--lp-tiffany);
}

.lp-hero-form-header h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-gray-900);
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.lp-hero-form-price {
  font-size: 18px;
  font-weight: 300;
  color: var(--lp-gray-900);
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lp-hero-form-price span {
  font-size: 11px;
  color: var(--lp-gray-500);
  margin-left: 4px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.lp-hero-form-card .lp-form-label {
  margin-bottom: 3px;
  font-size: 11px;
}

.lp-form-input--boxed {
  border: 1px solid var(--lp-gray-300) !important;
  border-radius: 4px !important;
  padding: 7px 10px !important;
  background: #FFFFFF !important;
  font-size: 13px !important;
}

.lp-form-input--boxed:focus {
  border-color: var(--lp-tiffany) !important;
  border-bottom-color: var(--lp-tiffany) !important;
  outline: none !important;
}

.lp-form-submit--hero {
  margin-top: 4px;
  padding: 10px;
  font-size: 13px;
}

.lp-hero-form-note {
  text-align: center;
  font-size: 10px;
  color: var(--lp-gray-500);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 20px;
  }

  .lp-hero-form-card {
    position: static;
  }
}

.lp-hero-badge-wrap {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 8px;
}

.lp-hero-badge-text {
  color: var(--lp-tiffany);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.lp-hero-section-title {
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--lp-tiffany-dark);
  padding: 6px 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.lp-hero-badge::before,
.lp-hero-badge::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--lp-tiffany);
}

.lp-hero h1 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--lp-gray-900);
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 1200px) {
  .lp-hero h1 {
    font-size: 24px;
  }
}

@media (max-width: 960px) {
  .lp-hero h1 {
    white-space: normal;
  }
}

.lp-hero h1 .yellow {
  color: var(--lp-tiffany-dark);
}

.lp-hero h1 .accent {
  background: none;
  color: var(--lp-primary);
  display: inline;
  border-bottom: none;
  padding-bottom: 0;
}

.lp-hero-sub {
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--lp-gray-700);
}

.lp-hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  padding: 12px 20px;
  border: 1px solid var(--lp-gray-200);
  border-radius: 8px;
}

.lp-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-gray-800);
  letter-spacing: 0.02em;
}

.lp-hero-feature::before {
  content: '✓';
  color: var(--lp-tiffany);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
}

.lp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--lp-tiffany);
  color: #FFFFFF;
  padding: 20px 48px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(10, 186, 181, 0.25);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.lp-hero-cta:hover {
  background: var(--lp-tiffany-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(10, 186, 181, 0.35);
}

.lp-hero-cta::after {
  content: '→';
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.lp-hero-cta:hover::after {
  transform: translateX(4px);
}

.lp-hero-note {
  font-size: 13px;
  color: var(--lp-gray-500);
  letter-spacing: 0.03em;
}

/* ===== セクション共通（カード型レイアウト） ===== */
.lp-section {
  padding: 24px 40px;
  background: transparent;
}

.lp-section > .lp-container {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 48px 200px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 10px 40px rgba(17, 24, 39, 0.05);
  max-width: 1800px;
}

.lp-section.bg-alt {
  background: transparent;
}

.lp-section.bg-alt > .lp-container {
  background: #FFFFFF;
}

.lp-section.bg-dark {
  background: transparent;
  color: #FFFFFF;
}

.lp-section.bg-dark > .lp-container {
  background: var(--lp-gray-900);
}

.lp-section-title {
  text-align: center;
  margin-bottom: 32px;
}

.lp-section-title::before {
  content: none;
}

.lp-section-title h2 {
  font-weight: 700 !important;
  color: var(--lp-primary) !important;
  line-height: 1.5 !important;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.lp-section.bg-dark .lp-section-title h2 {
  color: #FFFFFF;
}

.lp-section-title h2 .accent {
  color: var(--lp-tiffany-dark);
}

.lp-section.bg-dark .lp-section-title h2 .accent {
  color: var(--lp-tiffany-light);
}

.lp-section-title .lp-section-sub {
  font-size: 15px;
  color: var(--lp-gray-500);
  letter-spacing: 0.05em;
}

.lp-section.bg-dark .lp-section-title .lp-section-sub {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== お悩み・課題セクション（カード型） ===== */
.lp-problems {
  background: transparent;
  padding: 24px 40px;
}

.lp-problems .lp-container {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 88px 200px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 10px 40px rgba(17, 24, 39, 0.05);
  max-width: 1800px;
}

.lp-problems-list {
  max-width: 820px;
  margin: 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.lp-problems h2 {
  text-align: center;
  font-weight: 700;
  color: var(--lp-primary);
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.lp-problems h2 .lp-mark {
  color: var(--lp-tiffany-dark);
  background: none;
  padding: 0;
  border-bottom: 2px solid var(--lp-tiffany);
}

.lp-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--lp-gray-200);
  font-size: 16px;
  font-weight: 500;
  color: var(--lp-gray-800);
  line-height: 1.7;
}

.lp-problem-item:last-child {
  border-bottom: none;
}

.lp-problem-item::before {
  content: '✓';
  color: var(--lp-tiffany);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  width: auto;
  height: auto;
  border: none;
}

.lp-problem-item::after {
  content: '';
  position: absolute;
  /* decorative only */
}

/* ===== 解決策セクション ===== */
.lp-solution-card {
  background: #FFFFFF;
  border: 1px solid var(--lp-gray-200);
  border-radius: 8px;
  padding: 28px 40px;
  margin-bottom: 16px;
  display: flex;
  gap: 40px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.lp-solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--lp-tiffany);
  transition: height 0.4s ease;
}

.lp-solution-card:hover {
  border-color: var(--lp-tiffany-light);
  box-shadow: 0 12px 40px rgba(10, 186, 181, 0.08);
  transform: translateY(-2px);
}

.lp-solution-card:hover::before {
  height: 100%;
}

.lp-solution-num {
  width: 80px;
  height: 80px;
  background: transparent;
  color: var(--lp-tiffany-dark);
  border: 1px solid var(--lp-tiffany);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  flex-shrink: 0;
}

.lp-solution-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lp-tiffany);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.lp-solution-content p {
  font-size: 15px;
  color: var(--lp-gray-700);
  line-height: 2;
}

/* ===== 数字で見るセクション ===== */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-stat-card {
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 56px 32px;
  text-align: left;
}

.lp-stat-num {
  font-size: 42px;
  font-weight: 300;
  color: var(--lp-tiffany-light);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  font-family: "Inter", sans-serif;
}

.lp-stat-num .small {
  font-size: 20px;
  font-weight: 400;
  margin-left: 4px;
}

.lp-stat-label {
  font-size: 13px;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-stat-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-weight: 400;
}

/* ===== 講師紹介セクション ===== */
.lp-instructor {
  background: #FFFFFF;
  border: 1px solid var(--lp-gray-200);
  border-radius: 2px;
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
}

.lp-instructor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--lp-tiffany);
}

.lp-instructor-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--lp-tiffany-bg);
  border: 1px solid var(--lp-tiffany-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-tiffany-dark);
  font-size: 64px;
  font-weight: 300;
  font-family: "Inter", serif;
}

.lp-instructor-name {
  font-size: 11px;
  color: var(--lp-tiffany-dark);
  margin-bottom: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.lp-instructor h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--lp-gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--lp-gray-200);
}

.lp-instructor-bio {
  font-size: 15px;
  color: var(--lp-gray-700);
  line-height: 2;
  margin-bottom: 24px;
}

.lp-instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-tag {
  background: transparent;
  color: var(--lp-tiffany-dark);
  border: 1px solid var(--lp-tiffany-light);
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ===== 流れセクション ===== */
.lp-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
  border: none;
}

.lp-flow-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
  position: relative;
  transition: none;
}

.lp-flow-item:hover {
  background: transparent;
}

.lp-flow-header {
  background: var(--lp-tiffany);
  color: #FFFFFF;
  padding: 18px 24px 18px 40px;
  margin-bottom: 12px;
  border: none;
  display: block;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 16px 50%);
}

.lp-flow-item:first-child .lp-flow-header {
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  padding-left: 24px;
}


.lp-flow-num {
  display: block;
  background: transparent;
  color: #FFFFFF;
  padding: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: "Inter", sans-serif;
  margin-bottom: 4px;
  opacity: 0.95;
}

.lp-flow-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.4;
}

.lp-flow-item p {
  font-size: 14px;
  color: var(--lp-gray-700);
  line-height: 2;
  margin: 0;
  padding: 8px 20px 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* ===== 料金セクション ===== */
.lp-price-card {
  background: #FFFFFF;
  border: 1px solid var(--lp-gray-200);
  border-top: 3px solid var(--lp-tiffany);
  border-radius: 2px;
  padding: 72px 64px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.lp-price-badge {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  color: var(--lp-tiffany-dark);
  padding: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lp-price-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-gray-900);
  margin-bottom: 40px;
  margin-top: 24px;
  letter-spacing: -0.01em;
}

.lp-price-amount {
  font-size: 64px;
  font-weight: 300;
  color: var(--lp-gray-900);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  font-family: "Inter", sans-serif;
}

.lp-price-amount .yen {
  font-size: 28px;
  font-weight: 400;
  vertical-align: top;
  margin-right: 4px;
}

.lp-price-amount .unit {
  font-size: 15px;
  color: var(--lp-gray-500);
  font-weight: 400;
  margin-left: 4px;
}

.lp-price-tax {
  font-size: 12px;
  color: var(--lp-gray-500);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.lp-price-includes {
  text-align: left;
  background: var(--lp-gray-50);
  padding: 32px 36px;
  border-radius: 2px;
  margin-bottom: 40px;
  border-left: 2px solid var(--lp-tiffany);
}

.lp-price-includes-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-tiffany-dark);
  margin-bottom: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lp-price-includes ul {
  list-style: none;
}

.lp-price-includes li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--lp-gray-700);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px solid var(--lp-gray-200);
}

.lp-price-includes li:last-child {
  border-bottom: none;
}

.lp-price-includes li::before {
  content: '—';
  color: var(--lp-tiffany);
  font-weight: 400;
}

/* ===== お客様の声 ===== */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.lp-testimonial {
  background: #FFFFFF;
  border: 1px solid var(--lp-gray-200);
  border-radius: 2px;
  padding: 40px 36px;
  position: relative;
  transition: all 0.3s ease;
}

.lp-testimonial:hover {
  border-color: var(--lp-tiffany-light);
  box-shadow: 0 8px 24px rgba(10, 186, 181, 0.06);
}

.lp-testimonial-quote {
  font-size: 15px;
  line-height: 2;
  color: var(--lp-gray-700);
  margin-bottom: 28px;
  font-style: normal;
  position: relative;
  padding-top: 24px;
}

.lp-testimonial-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--lp-tiffany);
  font-size: 0;
  margin: 0;
}

.lp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--lp-gray-200);
}

.lp-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lp-tiffany-bg);
  border: 1px solid var(--lp-tiffany-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-tiffany-dark);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-family: "Inter", sans-serif;
}

.lp-testimonial-info strong {
  display: block;
  font-size: 14px;
  color: var(--lp-gray-900);
  font-weight: 600;
  margin-bottom: 2px;
}

.lp-testimonial-info span {
  font-size: 12px;
  color: var(--lp-gray-500);
  letter-spacing: 0.03em;
}

/* ===== FAQ ===== */
.lp-faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--lp-gray-200);
}

.lp-faq-item {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--lp-gray-200);
  overflow: hidden;
}

.lp-faq-q {
  padding: 28px 8px;
  font-weight: 600;
  font-size: 16px;
  color: var(--lp-gray-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.lp-faq-q:hover {
  color: var(--lp-tiffany-dark);
  background: transparent;
}

.lp-faq-q::before {
  content: 'Q.';
  width: auto;
  height: auto;
  background: transparent;
  color: var(--lp-tiffany-dark);
  border-radius: 0;
  display: inline;
  font-weight: 600;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.lp-faq-q::after {
  content: '+';
  margin-left: auto;
  font-size: 20px;
  color: var(--lp-gray-500);
  font-weight: 300;
  transition: transform 0.3s;
}

.lp-faq-q.open::after {
  content: '−';
  color: var(--lp-tiffany-dark);
}

.lp-faq-a {
  padding: 0 8px 28px 40px;
  font-size: 14px;
  line-height: 2;
  color: var(--lp-gray-700);
  display: none;
}

.lp-faq-a.open {
  display: block;
}

/* ===== リードマグネットセクション ===== */
.lp-leadmagnet {
  max-width: 880px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--lp-gray-200);
  border-top: 3px solid var(--lp-tiffany);
  border-radius: 2px;
  padding: 64px 72px;
  position: relative;
}

.lp-leadmagnet-badge {
  display: inline-block;
  color: var(--lp-tiffany-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lp-tiffany);
  display: inline-block;
}

.lp-leadmagnet-body h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-gray-500);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.lp-leadmagnet-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--lp-gray-900);
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.lp-leadmagnet-format {
  display: inline-block;
  font-size: 12px;
  color: var(--lp-tiffany-dark);
  font-weight: 500;
  margin-left: 12px;
  padding: 4px 10px;
  border: 1px solid var(--lp-tiffany-light);
  border-radius: 2px;
  letter-spacing: 0.05em;
  vertical-align: middle;
  font-family: "Inter", sans-serif;
}

.lp-leadmagnet-desc {
  font-size: 15px;
  color: var(--lp-gray-700);
  line-height: 2;
  margin-bottom: 32px;
}

.lp-leadmagnet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  background: var(--lp-gray-50);
  padding: 28px 32px;
  border-left: 2px solid var(--lp-tiffany);
}

.lp-leadmagnet-list li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--lp-gray-700);
  border-bottom: 1px solid var(--lp-gray-200);
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-leadmagnet-list li:last-child {
  border-bottom: none;
}

.lp-leadmagnet-list li::before {
  content: '—';
  color: var(--lp-tiffany);
  font-weight: 400;
}

.lp-leadmagnet-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--lp-tiffany);
  color: #FFFFFF;
  padding: 18px 42px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(10, 186, 181, 0.2);
  transition: all 0.3s ease;
}

.lp-leadmagnet-cta:hover {
  background: var(--lp-tiffany-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 186, 181, 0.3);
}

.lp-leadmagnet-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--lp-gray-500);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .lp-leadmagnet {
    padding: 40px 28px;
  }
  .lp-leadmagnet-title {
    font-size: 20px;
  }
  .lp-leadmagnet-format {
    display: inline-block;
    margin-left: 0;
    margin-top: 8px;
  }
  .lp-leadmagnet-list {
    padding: 20px 24px;
  }
  .lp-leadmagnet-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ===== フォームセクション（カード型） ===== */
.lp-form-section {
  background: transparent;
  color: #FFFFFF;
  padding: 24px 40px;
  position: relative;
}

.lp-form-section > .lp-container {
  background: var(--lp-gray-900);
  border-radius: 8px;
  padding: 88px 200px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 10px 40px rgba(17, 24, 39, 0.08);
  max-width: 1800px;
  position: relative;
  overflow: hidden;
}

.lp-form-section > .lp-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--lp-tiffany) 50%, transparent 100%);
}

.lp-form-section .lp-section-title h2 {
  color: #FFFFFF;
}

.lp-form-card {
  background: #FFFFFF;
  border-radius: 2px;
  padding: 64px 72px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border-top: 3px solid var(--lp-tiffany);
}

.lp-form-card h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--lp-gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.lp-form-card .lp-form-sub {
  text-align: center;
  font-size: 13px;
  color: var(--lp-gray-500);
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}

.lp-form-group {
  margin-bottom: 24px;
}

.lp-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-gray-700);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-form-label .required {
  background: transparent;
  color: var(--lp-tiffany-dark);
  font-size: 10px;
  padding: 0;
  border-radius: 0;
  margin-left: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.lp-form-label .required::before {
  content: '● ';
  color: var(--lp-tiffany);
  font-size: 8px;
}

.lp-form-input,
.lp-form-select,
.lp-form-textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--lp-gray-300);
  border-radius: 0;
  font-size: 15px;
  font-family: inherit;
  transition: border 0.25s;
  background: transparent;
}

.lp-form-input:focus,
.lp-form-select:focus,
.lp-form-textarea:focus {
  outline: none;
  border-bottom-color: var(--lp-tiffany);
}

.lp-form-textarea {
  resize: vertical;
  min-height: 100px;
  border: 1px solid var(--lp-gray-200);
  padding: 14px 16px;
}

.lp-form-textarea:focus {
  border-color: var(--lp-tiffany);
  border-bottom-color: var(--lp-tiffany);
}

.lp-form-submit {
  width: 100%;
  background: var(--lp-tiffany);
  color: #FFFFFF;
  border: none;
  padding: 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(10, 186, 181, 0.25);
}

.lp-form-submit:hover {
  background: var(--lp-tiffany-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(10, 186, 181, 0.35);
}

.lp-form-note {
  text-align: center;
  font-size: 11px;
  color: var(--lp-gray-500);
  margin-top: 20px;
  letter-spacing: 0.03em;
}

/* ===== フッター ===== */
.lp-footer {
  background: var(--lp-gray-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 32px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.lp-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.25s;
  letter-spacing: 0.05em;
}

.lp-footer-links a:hover {
  color: var(--lp-tiffany-light);
}

.lp-footer-copy {
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: 0.05em;
  font-family: "Inter", sans-serif;
}

/* ===== 固定下部CTA ===== */
.lp-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 20px;
  text-align: center;
  z-index: 99;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--lp-gray-200);
  display: none;
}

.lp-fixed-cta.show {
  display: block;
}

.lp-fixed-cta a {
  background: var(--lp-tiffany);
  color: #FFFFFF;
  padding: 14px 48px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.lp-fixed-cta a:hover {
  background: var(--lp-tiffany-dark);
}

/* ===== 中間幅レスポンシブ（タブレット〜小型PC） ===== */
@media (max-width: 1400px) {
  .lp-section > .lp-container,
  .lp-problems .lp-container,
  .lp-form-section > .lp-container,
  .lp-hero-inner {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (max-width: 1100px) {
  .lp-section > .lp-container,
  .lp-problems .lp-container,
  .lp-form-section > .lp-container,
  .lp-hero-inner {
    padding-left: 56px;
    padding-right: 56px;
  }
}

/* ============================================
   予約モーダル（カレンダー & Stripe決済）
   ============================================ */
.lp-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}

.lp-modal-overlay.active {
  display: flex;
}

.lp-modal {
  background: #FFFFFF;
  border-radius: 8px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border-top: 3px solid var(--lp-tiffany);
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  animation: lp-modal-in 0.3s ease;
}

@keyframes lp-modal-in {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-modal-header {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--lp-gray-200);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.lp-modal-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--lp-tiffany-dark);
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
}

.lp-modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--lp-gray-900);
  margin: 0;
  letter-spacing: -0.01em;
}

.lp-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--lp-gray-500);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  font-weight: 300;
  transition: color 0.2s;
}

.lp-modal-close:hover {
  color: var(--lp-gray-900);
}

.lp-modal-body {
  padding: 24px 32px 32px;
}

.lp-modal-loading {
  text-align: center;
  padding: 48px 0;
  color: var(--lp-gray-500);
  font-size: 13px;
}

.lp-modal-spinner {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 3px solid var(--lp-gray-200);
  border-top-color: var(--lp-tiffany);
  border-radius: 50%;
  animation: lp-spin 0.8s linear infinite;
  margin-bottom: 12px;
}

.lp-modal-spinner-inline {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: lp-spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes lp-spin {
  to { transform: rotate(360deg); }
}

.lp-modal-summary {
  background: var(--lp-gray-50);
  border-left: 2px solid var(--lp-tiffany);
  padding: 18px 22px;
  margin-bottom: 24px;
  border-radius: 2px;
}

.lp-modal-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 13px;
}

.lp-modal-summary-label {
  color: var(--lp-gray-500);
  letter-spacing: 0.03em;
}

.lp-modal-summary-value {
  color: var(--lp-gray-900);
  font-weight: 600;
}

.lp-modal-summary-total {
  border-top: 1px solid var(--lp-gray-200);
  margin-top: 6px;
  padding-top: 12px;
}

.lp-modal-summary-total .lp-modal-summary-value {
  font-size: 22px;
  font-weight: 300;
  color: var(--lp-tiffany-dark);
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
}

.lp-modal-section {
  margin-bottom: 24px;
}

.lp-modal-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-gray-700);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-modal-required {
  color: var(--lp-tiffany-dark);
  font-size: 10px;
  margin-left: 6px;
}

.lp-modal-required::before {
  content: '● ';
  color: var(--lp-tiffany);
  font-size: 8px;
}

/* ===== カレンダー ===== */
.lp-calendar {
  border: 1px solid var(--lp-gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.lp-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--lp-gray-900);
  color: #FFFFFF;
}

.lp-calendar-header span {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.lp-calendar-nav {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}

.lp-calendar-nav:hover {
  background: var(--lp-tiffany);
  border-color: var(--lp-tiffany);
}

.lp-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.lp-calendar-day-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  padding: 10px 0;
  background: var(--lp-gray-50);
  color: var(--lp-gray-500);
  letter-spacing: 0.05em;
}

.lp-calendar-day-label:first-child { color: #DC2626; }
.lp-calendar-day-label:last-child { color: #2563EB; }

.lp-calendar-cell {
  text-align: center;
  padding: 12px 0;
  font-size: 13px;
  cursor: default;
  color: var(--lp-gray-300);
  border-top: 1px solid var(--lp-gray-100);
  position: relative;
}

.lp-calendar-cell.active {
  color: var(--lp-gray-900);
  cursor: pointer;
  font-weight: 500;
}

.lp-calendar-cell.active:hover {
  background: var(--lp-tiffany-bg);
  color: var(--lp-tiffany-dark);
}

.lp-calendar-cell.selected {
  background: var(--lp-tiffany);
  color: #FFFFFF;
  font-weight: 700;
}

.lp-calendar-cell.sunday.active { color: #DC2626; }
.lp-calendar-cell.saturday.active { color: #2563EB; }
.lp-calendar-cell.sunday.selected,
.lp-calendar-cell.saturday.selected { color: #FFFFFF; }

/* ===== タイムスロット ===== */
.lp-time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lp-time-slot {
  padding: 12px 8px;
  border: 1px solid var(--lp-gray-200);
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: inherit;
  position: relative;
}

.lp-time-slot:hover {
  border-color: var(--lp-tiffany);
  background: var(--lp-tiffany-bg);
}

.lp-time-slot.pick1 {
  border-color: var(--lp-tiffany);
  background: var(--lp-tiffany);
  color: #FFFFFF;
}

.lp-time-slot.pick2 {
  border-color: var(--lp-tiffany);
  background: var(--lp-tiffany-dark);
  color: #FFFFFF;
}

.lp-time-slot.pick3 {
  border-color: var(--lp-tiffany);
  background: var(--lp-tiffany-light);
  color: #1F2937;
}

.lp-time-slot.selected {
  border-color: var(--lp-tiffany);
  background: var(--lp-tiffany);
  color: #FFFFFF;
}

.lp-time-slot-time {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-gray-900);
  letter-spacing: 0.02em;
  font-family: "Inter", sans-serif;
}

.lp-time-slot.selected .lp-time-slot-time,
.lp-time-slot.pick1 .lp-time-slot-time,
.lp-time-slot.pick2 .lp-time-slot-time {
  color: #FFFFFF;
}

.lp-time-slot-remaining {
  display: block;
  font-size: 10px;
  color: var(--lp-gray-500);
  margin-top: 2px;
}

.lp-time-slot.selected .lp-time-slot-remaining,
.lp-time-slot.pick1 .lp-time-slot-remaining,
.lp-time-slot.pick2 .lp-time-slot-remaining {
  color: rgba(255, 255, 255, 0.85);
}

.lp-time-slots-loading,
.lp-time-slots-empty,
.lp-time-slots-error {
  text-align: center;
  padding: 16px;
  font-size: 12px;
  color: var(--lp-gray-500);
}

.lp-time-slots-error {
  color: #DC2626;
}

/* ===== 選択状態表示 ===== */
.lp-modal-selected {
  background: var(--lp-tiffany-bg);
  border-left: 2px solid var(--lp-tiffany);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-tiffany-dark);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ===== 送信ボタン ===== */
.lp-modal-submit {
  width: 100%;
  background: var(--lp-tiffany);
  color: #FFFFFF;
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(10, 186, 181, 0.25);
}

.lp-modal-submit:hover:not(:disabled) {
  background: var(--lp-tiffany-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(10, 186, 181, 0.35);
}

.lp-modal-submit:disabled {
  background: var(--lp-gray-300);
  color: var(--lp-gray-500);
  cursor: not-allowed;
  box-shadow: none;
}

.lp-modal-note {
  text-align: center;
  font-size: 11px;
  color: var(--lp-gray-500);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.lp-modal-error {
  text-align: center;
  padding: 32px 0;
  color: #DC2626;
  font-size: 13px;
}

@media (max-width: 600px) {
  .lp-modal {
    border-radius: 8px;
  }
  .lp-modal-header {
    padding: 22px 22px 16px;
  }
  .lp-modal-body {
    padding: 20px 22px 24px;
  }
  .lp-time-slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .lp-hero {
    padding: 16px 12px;
  }

  .lp-hero-inner {
    padding: 48px 28px;
    border-radius: 8px;
  }

  .lp-section,
  .lp-problems,
  .lp-form-section {
    padding: 12px 12px;
  }

  .lp-section > .lp-container,
  .lp-problems .lp-container,
  .lp-form-section > .lp-container {
    padding: 56px 28px;
    border-radius: 8px;
  }

  .lp-hero--old-padding {
    padding: 56px 0 72px;
  }

  .lp-hero h1 {
    font-size: 28px;
  }

  .lp-hero-sub {
    font-size: 15px;
  }

  .lp-hero-features {
    flex-direction: column;
    gap: 14px;
    padding: 20px 0;
  }

  .lp-hero-cta {
    padding: 18px 32px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .lp-section {
    padding: 72px 0;
  }

  .lp-section-title {
    margin-bottom: 48px;
  }

  .lp-problems {
    padding: 72px 0;
  }

  .lp-problems-list {
    padding: 32px 24px;
  }

  .lp-problems h2 {
    margin-bottom: 28px;
  }

  .lp-solution-card {
    flex-direction: column;
    padding: 36px 28px;
    gap: 24px;
  }

  .lp-instructor {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
    gap: 32px;
  }

  .lp-instructor-avatar {
    margin: 0 auto;
    width: 140px;
    height: 140px;
    font-size: 48px;
  }

  .lp-instructor h3 {
    font-size: 22px;
  }

  .lp-stat-num {
    font-size: 42px;
  }

  .lp-price-card {
    padding: 48px 28px;
  }

  .lp-price-amount {
    font-size: 48px;
  }

  .lp-form-section {
    padding: 72px 0;
  }

  .lp-form-card {
    padding: 40px 24px;
  }
}
