:root {
  --blue: #246BFE; --blue2: #6B8DFF; --purple: #8B5CF6; --cyan: #26C6FF;
  --text: #101828; --muted: #667085; --soft: #F5F8FF; --soft2: #EEF4FF;
  --line: #E6ECF8; --shadow: 0 20px 60px rgba(26,55,120,.12); --radius: 28px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Noto Sans JP", "Yu Gothic", sans-serif; color: var(--text); background: #fff; line-height: 1.75; letter-spacing: .02em; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: initial; }
.section { padding: 96px 0; }
.center { text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); box-shadow: 0 0 0 6px rgba(36,107,254,.12); }
.headline { font-size: clamp(28px, 3.8vw, 46px); line-height: 1.28; font-weight: 900; }
.lead { font-size: 16px; color: var(--muted); font-weight: 600; margin-top: 14px; line-height: 1.8; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 28px; border-radius: 999px; background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; font-size: 16px; font-weight: 900; box-shadow: 0 16px 36px rgba(36,107,254,.25); transition: .2s ease; cursor: pointer; border: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(36,107,254,.32); }
.btn.secondary { background: #fff; color: var(--blue); border: 1.5px solid #D8E2FF; box-shadow: 0 10px 24px rgba(26,55,120,.08); }
.btn.secondary:hover { background: var(--soft2); }

/* HERO */
.hero { position: relative; padding: 72px 0 80px; display: flex; align-items: center; background: radial-gradient(circle at 12% 18%, rgba(38,198,255,.18), transparent 28%), radial-gradient(circle at 88% 12%, rgba(139,92,246,.16), transparent 30%), linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 72%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none; background-image: linear-gradient(#E9EFFC 1px, transparent 1px), linear-gradient(90deg, #E9EFFC 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, #000 0%, transparent 78%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid #DFE8FF; box-shadow: 0 10px 30px rgba(36,107,254,.10); color: var(--blue); font-size: 13px; font-weight: 900; margin-bottom: 22px; }
.pill span { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; font-size: 11px; }
.hero h1 { font-size: clamp(30px, 4.5vw, 58px); line-height: 1.14; font-weight: 950; letter-spacing: -.02em; margin-bottom: 20px; }
.hero h1 strong { background: linear-gradient(135deg, var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { font-size: clamp(15px, 1.6vw, 17px); font-weight: 600; color: #344054; margin-bottom: 32px; line-height: 1.9; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 28px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-stat-num { font-size: 26px; font-weight: 950; color: var(--blue); line-height: 1; }
.hero-stat-label { font-size: 11px; color: var(--muted); margin-top: 3px; }
.hero-visual { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.hero-img-wrap { display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(2, auto); gap: 16px; border-radius: 32px; overflow: hidden; box-shadow: 0 24px 64px rgba(26,55,120,.16); border: 1.5px solid rgba(255,255,255,.6); }
.hero-img-box { width: 100%; height: auto; }
.hero-img-box img { max-width: 100%; }
.hero-img-box--first { grid-column: 1/3; grid-row: 2/3; }
.hero-img-box--second { grid-column: 3/5; grid-row: 2/3; }
.hero-img-box--third { grid-column: 5/7; grid-row: 2/3; }
.hero-img-box--fourth { grid-column: 1/4; grid-row: 1/2; }
.hero-img-box--fifth { grid-column: 4/7; grid-row: 1/2; }

.hero-img-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.82); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.6); box-shadow: 0 10px 24px rgba(26,55,120,.12); font-size: 12px; font-weight: 900; color: #172B4D; }
.hero-img-badge i { width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--cyan)); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.2)} }

/* PERSONA BAND */
.persona-band { background: var(--soft2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.persona-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.persona-label { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: .1em; }
.persona-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.persona-tag { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 999px; background: #fff; border: 1.5px solid var(--line); font-size: 14px; font-weight: 900; color: var(--text); box-shadow: 0 4px 12px rgba(26,55,120,.06); }
.persona-tag::before { content: "✓"; color: var(--blue); font-weight: 950; }

/* PROBLEM */
.problem-section { background: var(--soft); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.problem-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; box-shadow: 0 10px 32px rgba(26,55,120,.06); transition: .2s ease; }
.problem-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.problem-card-img { width: 100%; height: auto; display: block; }
.problem-card-body { padding: 22px 22px 24px; }
.problem-num { font-size: 11px; font-weight: 900; letter-spacing: .12em; color: var(--blue); margin-bottom: 8px; }
.problem-title { font-size: 15px; font-weight: 900; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.problem-desc { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.7; }

/* AI FAIL ALERT */
.ai-fail-section { background: #fff; }
.ai-fail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-top: 52px; }
.ai-fail-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ai-fail-img img { width: 100%; display: block; }
.ai-fail-text h3 { font-size: clamp(22px, 2.8vw, 34px); font-weight: 950; line-height: 1.3; margin-bottom: 18px; }
.ai-fail-text h3 strong { background: linear-gradient(135deg, #ef4444, #FF4E50); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ai-fail-text p { font-size: 15px; font-weight: 600; color: #344054; line-height: 1.85; margin-bottom: 16px; }
.ai-fail-list { list-style: none; margin: 20px 0; }
.ai-fail-list li { padding: 10px 0; font-size: 14px; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.ai-fail-list li::before { content: "✗"; color: #ef4444; font-weight: 950; font-size: 16px; flex-shrink: 0; }
.answer-box { margin-top: 24px; padding: 20px 24px; border-radius: 16px; background: linear-gradient(135deg, var(--soft2), #fff); border: 1.5px solid var(--blue); }
.answer-box p { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.7; }
.answer-box p strong { color: var(--blue); font-weight: 950; font-size: 17px; }

/* WHAT IS */
.whatis-section { background: var(--soft); }
.whatis-panel { position: relative; border-radius: 34px; background: linear-gradient(135deg, #F7FAFF, #EEF4FF 46%, #fff); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 52px 56px; overflow: hidden; margin-top: 52px; }
.whatis-panel::before { content: ""; position: absolute; right: -70px; top: -90px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(36,107,254,.15), transparent 70%); }
.whatis-panel::after { content: ""; position: absolute; left: -60px; bottom: -80px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.10), transparent 70%); }
.whatis-panel > * { position: relative; z-index: 1; }
.whatis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.whatis-text h3 { font-size: clamp(20px, 2.6vw, 32px); font-weight: 950; line-height: 1.3; margin-bottom: 20px; }
.whatis-text h3 strong { background: linear-gradient(135deg, var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.whatis-text p { font-size: 15px; font-weight: 600; color: #344054; line-height: 1.85; margin-bottom: 14px; }
.whatis-tagline { display: block; margin: 22px 0; font-size: clamp(22px, 2.8vw, 36px); font-weight: 950; line-height: 1.3; color: var(--text); }
.whatis-tagline span { background: linear-gradient(135deg, var(--blue), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.whatis-img-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.whatis-img-item { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 32px rgba(26,55,120,.12); }
.whatis-img-item img { width: 100%; height: 100%; display: block; }
.whatis-img-item.tall { grid-row: span 2; }
.whatis-img-item.tall img { height: 100%; min-height: 200px; }

/* SITUATION GRID */
.situation-section { background: #fff; }
.situation-img-wrap { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.situation-img-box { width: 100%; height: auto; }
.situation-img-box img { max-width: 100%; }
.situation-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; justify-content: center; }
.situation-tag { padding: 8px 18px; border-radius: 999px; background: var(--soft2); border: 1px solid var(--line); font-size: 13px; font-weight: 700; color: var(--blue); }

/* BEFORE/AFTER 3-STEP */
.ba-section { background: var(--soft); }
.ba-all-grid { display: flex; flex-direction: column; gap: 64px; margin-top: 52px; }
.ba-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.ba-img-wrap img { width: 100%; display: block; }

/* UVP */
.uvp-section { background: #fff; }
.uvp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.uvp-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: 0 14px 45px rgba(26,55,120,.07); transition: .2s ease; }
.uvp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.uvp-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.uvp-card-body { padding: 28px 28px 32px; }
.uvp-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.uvp-badge.red { background: linear-gradient(135deg, #FF2A93, #FF4E50); color: #fff; box-shadow: 0 6px 16px rgba(255,78,80,.22); }
.uvp-badge.blue { background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; box-shadow: 0 6px 16px rgba(36,107,254,.22); }
.uvp-badge.green { background: linear-gradient(135deg, #059669, #10b981); color: #fff; box-shadow: 0 6px 16px rgba(5,150,105,.22); }
.uvp-card-title { font-size: 19px; font-weight: 950; color: var(--text); margin-bottom: 12px; line-height: 1.35; }
.uvp-card-desc { font-size: 14px; color: var(--muted); font-weight: 600; line-height: 1.8; }
.uvp-card-desc strong { color: var(--text); font-weight: 900; }
.uvp-highlight { display: inline-block; margin-top: 14px; background: linear-gradient(135deg, var(--soft2), #fff); border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; font-size: 13px; font-weight: 700; color: var(--blue); line-height: 1.6; }

/* STRENGTHS */
.strengths-section { background: var(--soft); }
.strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.strength-card { border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: 0 14px 45px rgba(26,55,120,.07); overflow: hidden; transition: .2s ease; }
.strength-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.strength-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.strength-body { padding: 26px 28px; }
.strength-num { font-size: 11px; font-weight: 900; letter-spacing: .12em; color: var(--blue); margin-bottom: 10px; }
.strength-title { font-size: 18px; font-weight: 950; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.strength-desc { font-size: 14px; color: var(--muted); font-weight: 600; line-height: 1.7; }
.strength-card.dark { background: linear-gradient(135deg, #0f1f3d, #1a3a6e); border-color: rgba(36,107,254,.3); }
.strength-card.dark .strength-num { color: #7eb3ff; }
.strength-card.dark .strength-title { color: #fff; }
.strength-card.dark .strength-desc { color: rgba(255,255,255,.65); }

/* COMPARISON */
.comparison-section { background: #fff; }
.comparison-table-wrap { margin-top: 52px; overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.comparison-table-notice { display: none; }
.comparison-table th { padding: 20px 24px; font-size: 14px; font-weight: 900; text-align: center; background: var(--soft2); border-bottom: 2px solid var(--line); }
.comparison-table th:first-child { text-align: left; color: var(--muted); font-weight: 700; }
.comparison-table th.hl { background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; }
.comparison-table td { padding: 16px 24px; font-size: 14px; font-weight: 600; text-align: center; border-top: 1px solid var(--line); }
.comparison-table td:first-child { text-align: left; color: var(--text); font-weight: 700; }
.comparison-table td.hl { background: rgba(36,107,254,.05); font-weight: 900; color: var(--blue); }
.comparison-table tr:hover td { background: var(--soft); }
.comparison-table tr:hover td.hl { background: rgba(36,107,254,.08); }
.c-ok { color: #22c55e; font-size: 17px; } .c-ng { color: #ef4444; font-size: 17px; } .c-warn { color: #f59e0b; font-size: 17px; }

/* PLANS */
.plans-section { background: var(--soft); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.plan-card { border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--line); transition: .2s ease; display: flex; flex-direction: column; }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.featured { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,107,254,.12), var(--shadow); }
.plan-img { width: 100%; height: max-content; aspect-ratio: 4/3; display: block; }
.plan-header { padding: 22px 24px 18px; background: linear-gradient(135deg, #0f1f3d, #1a3a6e); position: relative; }
.plan-card.featured .plan-header { background: linear-gradient(135deg, var(--blue), var(--purple)); }
.plan-badge { position: absolute; top: 0; right: 20px; background: linear-gradient(135deg, #FF2A93, #FF4E50, #F9C03C); color: #fff; font-size: 11px; font-weight: 900; padding: 4px 12px; border-radius: 0 0 8px 8px; }
.plan-name { font-size: 11px; font-weight: 900; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.plan-title { font-size: 19px; font-weight: 950; color: #fff; margin-bottom: 10px; }
.plan-cuts { font-size: 13px; color: rgba(255,255,255,.65); font-weight: 700; }
.plan-cuts strong { font-size: 26px; font-weight: 950; color: #fff; line-height: 1; }
.plan-price { display: inline-flex; align-items: baseline; gap: 4px; margin-top: 10px; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); }
.plan-price-num { font-size: 24px; font-weight: 950; color: #fff; }
.plan-price-unit { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.75); }
.plan-body { padding: 24px; background: #fff; flex: 1; display: flex; flex-direction: column; }
.plan-items { list-style: none; margin-bottom: 24px; flex: 1; }
.plan-items li { padding: 8px 0; font-size: 14px; font-weight: 600; color: #344054; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
.plan-items li::before { content: "✓"; color: var(--blue); font-weight: 950; flex-shrink: 0; }
.plan-free-badge { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg, #FF2A93, #FF4E50); color: #fff; font-size: 13px; font-weight: 950; padding: 8px 16px; border-radius: 999px; margin-bottom: 14px; box-shadow: 0 8px 20px rgba(255,78,80,.25); animation: freePulse 2.5s ease-in-out infinite; }
@keyframes freePulse { 0%,100%{box-shadow:0 8px 20px rgba(255,78,80,.25)} 50%{box-shadow:0 12px 28px rgba(255,78,80,.4)} }
.plan-cta { display: block; text-align: center; padding: 13px; border-radius: 999px; font-size: 14px; font-weight: 900; text-decoration: none; transition: all .2s; }
.plan-cta-outline { border: 2px solid var(--blue); color: var(--blue); }
.plan-cta-outline:hover { background: var(--blue); color: #fff; }
.plan-cta-fill { background: linear-gradient(135deg, var(--blue), var(--purple)); color: #fff; box-shadow: 0 10px 24px rgba(36,107,254,.25); }
.plan-cta-fill:hover { box-shadow: 0 14px 32px rgba(36,107,254,.35); }

/* CASES */
.cases-section { background: #fff; }
.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; gap: 18px; margin-top: 52px; }
.case-card { border-radius: 24px; overflow: hidden; box-shadow: 0 14px 38px rgba(26,55,120,.10); position: relative; aspect-ratio: 16/9; cursor: pointer; transition: .2s ease; }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-img { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform .4s ease; }
.case-card:hover .case-img { transform: scale(1.04); }
.case-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.08) 52%, rgba(255,255,255,.02)); }
.case-label { position: absolute; left: 12px; right: 12px; bottom: 16px; color: #fff; font-size: 15px; font-weight: 950; letter-spacing: .04em; text-shadow: 0 2px 8px rgba(0,0,0,.38); }
.case-tag { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.82); backdrop-filter: blur(8px); font-size: 11px; font-weight: 900; color: var(--blue); border: 1px solid rgba(255,255,255,.6); }

/* HONEST */
.honest-section { background: var(--soft); }
.honest-box { background: var(--soft2); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 48px; margin-top: 48px; }
.honest-box h3 { font-size: 18px; font-weight: 950; color: var(--text); margin-bottom: 22px; }
.honest-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.honest-list li { font-size: 14px; font-weight: 600; color: #344054; line-height: 1.65; padding-left: 18px; position: relative; }
.honest-list li::before { content: "●"; position: absolute; left: 0; color: var(--blue); font-size: 7px; top: 7px; }

/* FLOW */
.flow-section { background: #fff; }
.flow-steps { max-width: 800px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 0; }
.flow-item { display: flex; gap: 28px; align-items: flex-start; position: relative; }
.flow-item:not(:last-child)::after { content: ""; position: absolute; left: 23px; top: 52px; bottom: -28px; width: 2px; background: linear-gradient(to bottom, var(--blue), rgba(36,107,254,.15)); }
.flow-item + .flow-item { margin-top: 28px; }
.flow-circle { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple)); display: flex; align-items: center; justify-content: center; font-weight: 950; font-size: 17px; color: #fff; flex-shrink: 0; box-shadow: 0 8px 20px rgba(36,107,254,.28); }
.flow-content { background: #fff; border-radius: 22px; padding: 22px 26px; flex: 1; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(26,55,120,.06); }
.flow-content h3 { font-size: 16px; font-weight: 950; color: var(--text); margin-bottom: 6px; }
.flow-content p { font-size: 14px; font-weight: 600; color: var(--muted); line-height: 1.7; }

/* FAQ */
.faq-section { background: var(--soft); }
.faq-list { max-width: 880px; margin: 52px auto 0; display: grid; gap: 16px; }
.faq-item { border: 1.5px solid var(--line); border-radius: 22px; background: #fff; padding: 26px 30px; box-shadow: 0 10px 30px rgba(26,55,120,.05); transition: .2s ease; }
.faq-item:hover { border-color: rgba(36,107,254,.3); box-shadow: 0 14px 40px rgba(26,55,120,.10); }
.faq-q { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.faq-q-mark { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 950; margin-top: 1px; }
.faq-q-text { font-size: 17px; font-weight: 950; color: var(--text); line-height: 1.4; }
.faq-a { display: flex; align-items: flex-start; gap: 14px; }
.faq-a-mark { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--soft2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 14px; font-weight: 950; margin-top: 1px; }
.faq-a-text { font-size: 15px; font-weight: 600; color: var(--muted); line-height: 1.75; }

/* CTA */
.cta-section { padding: 96px 0; background: linear-gradient(180deg, #fff, var(--soft)); }
.cta-card { position: relative; overflow: hidden; border-radius: 34px; padding: 60px 40px; text-align: center; background: linear-gradient(135deg, #F7FAFF, #EEF4FF 52%, #fff); border: 1px solid var(--line); box-shadow: var(--shadow); }
.cta-card::before { content: ""; position: absolute; right: -80px; top: -90px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(36,107,254,.15), transparent 70%); }
.cta-card::after { content: ""; position: absolute; left: -70px; bottom: -90px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.12), transparent 70%); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { font-size: clamp(26px, 3.8vw, 44px); font-weight: 950; line-height: 1.3; margin-bottom: 14px; }
.cta-card p { font-size: 17px; font-weight: 700; color: #475467; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 18px; font-size: 13px; color: var(--muted); font-weight: 600; }

/* FOOTER */
footer { background: #0f1f3d; padding: 40px 24px; text-align: center; border-top: 1px solid rgba(36,107,254,.2); }
.footer-logo { font-size: 17px; font-weight: 950; color: #7eb3ff; margin-bottom: 12px; }
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 18px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.45); font-size: 13px; font-weight: 600; transition: color .2s; }
.footer-links a:hover { color: #7eb3ff; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); font-weight: 500; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero-grid, .ai-fail-grid, .whatis-grid { grid-template-columns: 1fr; }
  .hero-img-wrap { gap: 8px; }
  .problem-grid, .strengths-grid, .uvp-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .honest-list { grid-template-columns: 1fr; }
  .situation-img-wrap { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  nav { display: none; }
  .section { padding: 64px 0; }
  .problem-grid, .strengths-grid, .uvp-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .honest-box { padding: 28px 22px; }
  .whatis-panel { padding: 32px 24px; }
  .whatis-img-stack { grid-template-columns: 1fr; }
  .whatis-img-item.tall { grid-row: span 1; }
  .comparison-table { width: 100vw; min-width: 600px; overflow-x: auto }
  .comparison-table-notice { display: block; }
  .ba-chip { display: none; }
}
@media screen and (max-width:478px) {
  .cases-grid { grid-template-columns: 1fr; }
}