/* =====================================================
   宅建AI専属コーチ - LP (lp.css)
   ===================================================== */

:root {
  --grad-main: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
  --grad-pop1: linear-gradient(135deg,#f093fb 0%,#f5576c 100%);
  --grad-pop2: linear-gradient(135deg,#4facfe 0%,#00f2fe 100%);
  --grad-pop3: linear-gradient(135deg,#43e97b 0%,#38f9d7 100%);
  --grad-orange: linear-gradient(135deg,#fa709a 0%,#fee140 100%);
  --c-text: #1a1a2e;
  --c-light: #6b7280;
  --c-border: rgba(102,126,234,0.15);
  --radius: 20px;
  --shadow: 0 8px 32px rgba(102,126,234,0.18);
  --shadow-lg: 0 20px 60px rgba(102,126,234,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', -apple-system, sans-serif;
  color: var(--c-text);
  background: #f8f7ff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===== HEADER ===== */
.lp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.3s;
}
.lp-header.scrolled { box-shadow: 0 4px 24px rgba(102,126,234,0.12); }
.header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
  font-size: 20px; font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-logo span { color: #764ba2; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-login {
  padding: 8px 18px;
  border-radius: 30px; font-size: 13px; font-weight: 700;
  color: var(--c-text);
  border: 2px solid var(--c-border);
  transition: all 0.2s;
}
.btn-login:hover { border-color: #667eea; color: #667eea; }
.btn-header-cta {
  padding: 9px 20px;
  border-radius: 30px; font-size: 13px; font-weight: 700;
  background: var(--grad-main); color: white;
  box-shadow: 0 4px 16px rgba(102,126,234,0.4);
  transition: all 0.3s;
}
.btn-header-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(102,126,234,0.5); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 100px 20px 60px;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(102,126,234,0.3) 0%, transparent 70%);
  top: -100px; right: -100px; border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,87,108,0.2) 0%, transparent 70%);
  bottom: -50px; left: -50px; border-radius: 50%;
  animation: float 8s ease-in-out 2s infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px; padding: 8px 18px;
  font-size: 13px; font-weight: 700; color: #ffe066;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 900; color: white;
  line-height: 1.2; margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-accent {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.8);
  line-height: 1.9; margin-bottom: 32px;
}
.hero-sub strong { color: #ffe066; }
.hero-price {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 20px 32px;
  margin-bottom: 28px;
  display: inline-block;
}
.price-main { display: flex; align-items: baseline; gap: 4px; justify-content: center; }
.price-num {
  font-size: 56px; font-weight: 900;
  background: linear-gradient(135deg,#ffe066,#ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-unit { font-size: 20px; color: rgba(255,255,255,0.8); font-weight: 700; }
.price-trial {
  font-size: 14px; color: #43e97b; font-weight: 700; margin-top: 8px;
}
.price-note { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.btn-hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad-main);
  color: white; font-size: 18px; font-weight: 900;
  padding: 18px 40px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(102,126,234,0.6);
  transition: all 0.3s;
  animation: pulse-cta 2.5s infinite;
}
.btn-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(102,126,234,0.7); }
@keyframes pulse-cta {
  0%,100% { box-shadow: 0 8px 32px rgba(102,126,234,0.6); }
  50% { box-shadow: 0 8px 48px rgba(102,126,234,0.8); }
}
.hero-sub-note {
  font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: white;
  box-shadow: var(--shadow);
  padding: 24px 20px;
}
.trust-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 16px;
}
.trust-item { text-align: center; }
.trust-num {
  display: block;
  font-size: 28px; font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.trust-label { font-size: 11px; color: var(--c-light); font-weight: 600; margin-top: 2px; }
.trust-div { width: 1px; height: 40px; background: var(--c-border); }

/* ===== SECTIONS ===== */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section-badge {
  display: inline-block;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 12px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 2px solid #667eea;
  padding-bottom: 2px;
}
.section-title {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900; line-height: 1.3; margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-sub { font-size: 15px; color: var(--c-light); margin-bottom: 32px; }

/* ===== STORY ===== */
.story-section { padding: 80px 20px; background: white; }
.story-card {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(145deg,#f8f7ff,#ffffff);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  text-align: center;
}
.story-icon { font-size: 56px; margin-bottom: 20px; display: block; }
.story-title {
  font-size: 26px; font-weight: 900;
  margin-bottom: 28px; line-height: 1.4;
}
.story-body {
  text-align: left; line-height: 1.9;
  font-size: 15px; color: #374151;
}
.story-body p { margin-bottom: 14px; }
.story-body strong { color: var(--c-text); font-weight: 700; }
.story-divider {
  height: 2px; margin: 24px 0;
  background: linear-gradient(90deg,transparent,#667eea,transparent);
  border-radius: 1px;
}
.story-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--c-border);
  text-align: left;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 900; }
.author-title { font-size: 11px; color: var(--c-light); margin-top: 3px; line-height: 1.5; }

/* ===== FEATURES ===== */
.features-section { padding: 80px 20px; background: #f8f7ff; text-align: center; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 20px; margin-top: 40px;
}
.feature-card {
  background: white; border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow); text-align: left;
  border: 1px solid var(--c-border);
  transition: all 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
}
.feature-card h3 { font-size: 17px; font-weight: 900; margin-bottom: 8px; }
.feature-card p { font-size: 13px; line-height: 1.7; color: var(--c-light); }

/* ===== DEMO ===== */
.demo-section { padding: 80px 20px; background: white; text-align: center; }
.demo-card {
  max-width: 560px; margin: 40px auto 0;
  background: linear-gradient(145deg,#f8f7ff,white);
  border-radius: 28px; padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}
.demo-progress {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.demo-progress-bar { flex: 1; height: 6px; background: #f0f0f0; border-radius: 3px; overflow: hidden; }
.demo-progress-fill { height: 100%; background: var(--grad-main); border-radius: 3px; transition: width 0.5s; }
.demo-meta { display: flex; gap: 8px; margin-bottom: 14px; }
.demo-year, .demo-major {
  background: rgba(102,126,234,0.1); color: #667eea;
  border-radius: 20px; padding: 4px 12px;
  font-size: 12px; font-weight: 700;
}
.demo-question {
  font-size: 14px; line-height: 1.9; text-align: left;
  margin-bottom: 20px; font-weight: 500;
}
.demo-choices { display: flex; flex-direction: column; gap: 10px; }
.demo-choice {
  width: 100%; padding: 13px 16px;
  background: white; border: 2px solid rgba(102,126,234,0.2);
  border-radius: 14px; font-size: 13px; text-align: left;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: flex-start; gap: 10px;
  font-family: inherit; line-height: 1.6;
}
.demo-choice:hover { border-color: #667eea; background: rgba(102,126,234,0.04); }
.demo-choice-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(102,126,234,0.1); color: #667eea;
  font-size: 12px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.demo-choice.correct { border-color: #43e97b; background: rgba(67,233,123,0.08); }
.demo-choice.correct .demo-choice-num { background: linear-gradient(135deg,#43e97b,#38f9d7); color: white; }
.demo-choice.wrong { border-color: #f5576c; background: rgba(245,87,108,0.08); }
.demo-choice.wrong .demo-choice-num { background: linear-gradient(135deg,#f093fb,#f5576c); color: white; }
.demo-feedback {
  margin-top: 14px; padding: 14px 16px;
  border-radius: 14px; font-size: 13px; line-height: 1.7; text-align: left;
}
.demo-feedback.correct-fb { background: rgba(67,233,123,0.1); border: 1px solid rgba(67,233,123,0.3); }
.demo-feedback.wrong-fb { background: rgba(245,87,108,0.08); border: 1px solid rgba(245,87,108,0.2); }
.demo-next-btn {
  width: 100%; margin-top: 12px; padding: 13px;
  background: var(--grad-main); color: white;
  border-radius: 14px; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.demo-next-btn:hover { opacity: 0.9; }
.demo-cta { margin-top: 32px; }
.demo-cta p { font-size: 14px; color: var(--c-light); margin-bottom: 14px; }
.demo-cta strong { color: var(--c-text); }
.btn-demo-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-main); color: white;
  font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 40px;
  box-shadow: 0 6px 24px rgba(102,126,234,0.4);
  transition: all 0.3s;
}
.btn-demo-cta:hover { transform: translateY(-2px); }

/* ===== PRICE ===== */
.price-section { padding: 80px 20px; background: #f8f7ff; text-align: center; }
.price-card {
  max-width: 480px; margin: 40px auto 0;
  background: white; border-radius: 28px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 2px solid rgba(102,126,234,0.2);
}
.price-card-header {
  background: var(--grad-main); color: white;
  padding: 36px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.price-card-header::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.price-card-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border-radius: 20px; padding: 4px 14px;
  font-size: 12px; font-weight: 700; margin-bottom: 12px;
}
.price-card-name { font-size: 22px; font-weight: 900; margin-bottom: 16px; }
.price-card-price {
  display: flex; align-items: baseline; gap: 4px; justify-content: center;
  margin-bottom: 12px;
}
.price-card-num { font-size: 64px; font-weight: 900; line-height: 1; }
.price-card-unit { font-size: 16px; opacity: 0.85; }
.price-card-trial { font-size: 14px; background: rgba(255,255,255,0.2); border-radius: 20px; padding: 6px 16px; display: inline-block; }
.price-card-body { padding: 32px; }
.price-features { list-style: none; margin-bottom: 28px; }
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 14px;
  border-bottom: 1px solid rgba(102,126,234,0.06);
}
.price-features li:last-child { border-bottom: none; }
.price-features i { color: #43e97b; font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.btn-price-cta {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad-main); color: white;
  font-size: 16px; font-weight: 700;
  padding: 16px; border-radius: 16px;
  box-shadow: 0 6px 24px rgba(102,126,234,0.4);
  transition: all 0.3s; margin-bottom: 20px;
}
.btn-price-cta:hover { transform: translateY(-2px); }
.price-notes { display: flex; flex-direction: column; gap: 6px; }
.price-notes p { font-size: 13px; color: var(--c-light); display: flex; align-items: center; gap: 8px; }
.price-notes i { color: #667eea; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 20px; background: white; text-align: center; }
.faq-list { max-width: 720px; margin: 40px auto 0; text-align: left; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-q {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 0; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: color 0.2s;
}
.faq-q:hover { color: #667eea; }
.faq-icon { font-size: 12px; color: #667eea; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(90deg); }
.faq-a {
  font-size: 14px; line-height: 1.8; color: var(--c-light);
  padding: 0 0 18px 24px; display: none;
}
.faq-a.show { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 20px;
  background: linear-gradient(160deg,#0f0c29,#302b63);
  text-align: center; color: white; position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(102,126,234,0.2) 0%, transparent 70%);
  top: -100px; right: -100px; border-radius: 50%;
}
.final-icon { font-size: 64px; margin-bottom: 20px; display: block; position: relative; z-index: 1; }
.final-title {
  font-size: clamp(22px, 5vw, 36px); font-weight: 900;
  margin-bottom: 16px; line-height: 1.4; position: relative; z-index: 1;
}
.final-sub {
  font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 36px;
  position: relative; z-index: 1;
}
.btn-final-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg,#ffe066,#ffd200);
  color: #1a1a2e; font-size: 18px; font-weight: 900;
  padding: 18px 44px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(255,200,0,0.5);
  transition: all 0.3s; position: relative; z-index: 1;
}
.btn-final-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,200,0,0.6); }
.final-notes {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-top: 20px; position: relative; z-index: 1;
}
.final-notes span { font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.final-notes i { color: #43e97b; }

/* ===== FOOTER ===== */
.lp-footer { background: #1a1a2e; color: rgba(255,255,255,0.6); padding: 40px 20px; text-align: center; }
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo { font-size: 18px; font-weight: 900; color: white; margin-bottom: 16px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 16px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .story-card { padding: 32px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-div { display: none; }
  .trust-inner { gap: 20px; }
  .btn-hero-cta { font-size: 16px; padding: 16px 30px; }
  .hero-price { padding: 16px 24px; }
  .price-num { font-size: 44px; }
}

/* ===== BIBLE SECTION ===== */
.bible-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f7ff 0%, #fff 100%);
}
.bible-accent {
  color: #667eea;
  display: block;
}
.bible-tabs {
  display: flex;
  gap: 8px;
  margin: 40px 0 24px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bible-tabs::-webkit-scrollbar { display: none; }
.bible-tab {
  flex: 0 0 auto;
  background: #f0f0f8;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  transition: all 0.2s;
  min-width: 80px;
}
.bible-tab span {
  font-size: 11px;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.bible-tab.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-color: transparent;
  color: #fff;
}
.bible-content { display: block; }
.bible-content.hidden { display: none; }
.bible-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(102,126,234,0.1);
  border: 1px solid #e8e6ff;
}
.bible-chapter-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.bible-chapter-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 24px;
  line-height: 1.4;
}
.bible-point {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0eeff;
}
.bible-point:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.bible-point-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0eeff;
  border-radius: 12px;
}
.bible-point-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}
.bible-point-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}
.bible-list {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}
.bible-list li {
  font-size: 14px;
  color: #555;
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.6;
}
.bible-list li::before {
  content: '✓';
  color: #667eea;
  font-weight: 700;
  position: absolute;
  left: 0;
}
.bible-quote {
  background: linear-gradient(135deg, #667eea15, #764ba215);
  border-left: 4px solid #667eea;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #667eea;
  line-height: 1.6;
  margin-top: 12px;
}
.bible-cycle {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cycle-step {
  flex: 1;
  min-width: 120px;
  background: #f8f7ff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.cycle-num {
  font-size: 24px;
  font-weight: 800;
  color: #667eea;
}
.cycle-label {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin: 4px 0 8px;
  line-height: 1.4;
}
.cycle-step p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}
.cycle-arrow {
  font-size: 24px;
  color: #667eea;
  display: flex;
  align-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.bible-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.bible-tools { display: flex; flex-direction: column; gap: 16px; }
.bible-tool {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f8f7ff;
  border-radius: 12px;
  padding: 16px;
}
.bible-tool.highlight-tool {
  background: linear-gradient(135deg, #667eea10, #764ba210);
  border: 2px solid #667eea;
}
.tool-icon { font-size: 28px; flex-shrink: 0; }
.tool-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}
.tool-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.bible-final-quote {
  background: linear-gradient(135deg, #1a1a2e, #2d2d5e);
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  margin: 20px 0;
  text-align: center;
}
.bible-final-quote p {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 8px;
}
.bible-final-quote span {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
}
.bible-ending {
  text-align: center;
  padding-top: 16px;
}
.bible-ending p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}
.btn-bible-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 16px;
  box-shadow: 0 4px 20px rgba(102,126,234,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-bible-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(102,126,234,0.5);
}

@media (max-width: 640px) {
  .bible-card { padding: 20px 16px; }
  .bible-tabs { gap: 6px; }
  .bible-tab { min-width: 70px; padding: 8px 10px; font-size: 11px; }
  .bible-chapter-title { font-size: 17px; }
  .bible-point { gap: 12px; }
  .bible-point-icon { width: 40px; height: 40px; font-size: 22px; }
  .cycle-arrow { display: none; }
  .bible-cycle { flex-direction: column; }
  .btn-bible-cta { font-size: 14px; padding: 14px 24px; }
}

/* ===== ROADMAP SECTION ===== */
.roadmap-section {
  padding: 80px 0;
  background: #fff;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 24px;
}
.roadmap-item {
  background: #f8f7ff;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.2s;
}
.roadmap-item.current {
  background: linear-gradient(135deg, #667eea10, #764ba215);
  border-color: #667eea;
}
.roadmap-item.soon {
  background: #fff8f0;
  border-color: #f59e0b40;
}
.roadmap-item.future {
  background: #f8f7ff;
  border-color: #e5e7eb;
}
.roadmap-badge {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  margin-bottom: 10px;
}
.roadmap-item.current .roadmap-badge { color: #667eea; }
.roadmap-item.soon .roadmap-badge { color: #f59e0b; }
.roadmap-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.roadmap-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
  line-height: 1.4;
}
.roadmap-desc {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}
.roadmap-note {
  background: linear-gradient(135deg, #667eea10, #764ba210);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
}
.roadmap-note p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .roadmap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .roadmap-item:last-child {
    grid-column: 1 / -1;
  }
  .roadmap-name { font-size: 12px; }
}
