/* ============================================
   TAKUBOX LP - Conversion-Optimized
   Mobile-first, clean, educational
   ============================================ */

:root {
  --primary: #4A90D9;
  --primary-dark: #3A7BC8;
  --accent: #F5A623;
  --cta: #E85D3A;
  --cta-hover: #D44A28;
  --cta-shadow: rgba(232, 93, 58, 0.3);
  --bg-white: #ffffff;
  --bg-warm: #FFF9F0;
  --bg-light: #F7F8FA;
  --bg-dark: #1A1A2E;
  --text-dark: #2D2D2D;
  --text-body: #444444;
  --text-muted: #888888;
  --text-white: #ffffff;
  --red: #E84040;
  --blue: #4A90D9;
  --green: #27AE60;
  --border: #E8E8E8;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Noto Sans JP', -apple-system, 'Hiragino Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ======== Section Common ======== */
section {
  padding: 64px 0;
}

.section-headline {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: -20px;
  margin-bottom: 40px;
}

/* ======== Fade-up Animation ======== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ======== Fixed CTA Bar ======== */
.fixed-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.fixed-cta-bar.visible {
  transform: translateY(0);
}

.fixed-cta-btn {
  display: block;
  background: var(--cta);
  color: var(--text-white);
  text-align: center;
  padding: 14px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 16px var(--cta-shadow);
}

/* ======== ① First View ======== */
.fv {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-white) 100%);
  padding: 40px 0 48px;
  text-align: center;
}

.fv-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.fv-label {
  display: inline-block;
  background: var(--red);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.fv-label-price {
  font-size: 18px;
}

.fv-label-free {
  font-size: 18px;
  text-decoration: underline;
}

.fv-headline {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.fv-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 32px;
}

.fv-sub strong {
  color: var(--primary);
  font-weight: 700;
}

.fv-image {
  max-width: 320px;
  margin: 0 auto 32px;
}

.fv-image img {
  border-radius: var(--radius-lg);
}

.fv-authority {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.fv-authority strong {
  font-size: 20px;
  color: var(--cta);
  font-weight: 900;
}

.fv-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ======== CTA Button ======== */
.cta-btn {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  background: var(--cta);
  color: var(--text-white);
  text-align: center;
  padding: 18px 24px;
  border-radius: 100px;
  box-shadow: 0 4px 20px var(--cta-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--cta-shadow);
  background: var(--cta-hover);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn-main {
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.cta-btn-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
}

.cta-btn--large {
  padding: 22px 32px;
}

.cta-btn--large .cta-btn-main {
  font-size: 20px;
}

.cta-section {
  padding: 32px 0;
  background: var(--bg-light);
}

/* ======== ② Empathy ======== */
.empathy {
  background: var(--bg-white);
  padding: 64px 0;
}

.empathy-headline {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 36px;
}

.empathy-list {
  list-style: none;
  max-width: 500px;
  margin: 0 auto;
}

.empathy-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

.empathy-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.empathy-list p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

.empathy-closing {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 36px;
  line-height: 1.6;
}

/* ======== ③ Problem ======== */
.problem {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 64px 0;
}

.problem .section-headline {
  color: var(--text-white);
}

.problem-body {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.problem-body p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.9;
}

.problem-lead {
  font-size: 20px !important;
  opacity: 1 !important;
}

.problem-highlight {
  font-size: 18px !important;
  line-height: 1.7 !important;
  opacity: 1 !important;
  color: var(--accent);
  margin-top: 32px !important;
}

.problem-highlight strong {
  font-weight: 700;
}

/* ======== ④ Solution ======== */
.solution {
  background: var(--bg-white);
  padding: 64px 0;
}

.solution-concept {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
  margin: 0 auto 36px;
}

.solution-before,
.solution-after {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.solution-after {
  background: #EBF5FF;
  border: 2px solid var(--primary);
}

.solution-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.solution-after .solution-label {
  color: var(--primary);
}

.solution-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.red { color: var(--red); }
.blue { color: var(--blue); }

.solution-arrow {
  font-size: 14px;
  color: var(--text-muted);
}

.solution-after .solution-arrow {
  color: var(--primary);
  font-weight: 500;
}

.solution-closing {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 500;
}

.solution-structure {
  margin-top: 40px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.solution-structure h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.solution-structure p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-body);
  margin-bottom: 12px;
}

.solution-structure p:last-child {
  margin-bottom: 0;
}

.solution-structure strong {
  color: var(--primary);
  font-weight: 700;
}

/* ======== ⑤ Mechanism ======== */
.mechanism {
  background: var(--bg-warm);
  padding: 64px 0;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
}

.step {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow);
}

.step-num {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--primary);
  color: var(--text-white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  line-height: 1.8;
}

.step strong {
  color: var(--primary);
  font-weight: 700;
}

/* ======== ⑥ Comparison ======== */
.comparison {
  background: var(--bg-white);
  padding: 64px 0;
}

.comparison-table-wrap {
  margin-bottom: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.highlight-col {
  background: #EBF5FF;
}

.comparison-table thead .highlight-col {
  color: var(--primary);
  font-size: 15px;
}

.row-label {
  text-align: left !important;
  font-weight: 500;
  color: var(--text-dark);
}

.check { color: var(--primary); font-weight: 700; font-size: 18px; }
.cross { color: #CCC; font-size: 18px; }
.triangle { color: var(--text-muted); font-size: 18px; }

.comparison-note {
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}

.comparison-note strong {
  color: var(--primary);
}

/* ======== ⑦ Learning ======== */
.learning {
  background: var(--bg-light);
  padding: 64px 0;
}

.highlight-num {
  color: var(--cta);
}

.learning-intro {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 36px;
  color: var(--text-body);
}

.learning-intro strong {
  color: var(--cta);
  font-weight: 700;
}

.learning-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.learning-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

.learning-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.learning-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.learning-card p {
  font-size: 14px;
  line-height: 1.8;
}

.learning-card small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.learning-philosophy {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-bottom: 32px;
  text-align: center;
}

.learning-philosophy h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.learning-philosophy p {
  font-size: 15px;
  line-height: 2;
  color: var(--text-body);
  margin-bottom: 16px;
}

.learning-philosophy p:last-child {
  margin-bottom: 0;
}

.learning-philosophy strong {
  color: var(--cta);
  font-weight: 700;
}

.learning-note {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--primary);
}

/* ======== ⑧ Results ======== */
.results {
  background: var(--bg-white);
  padding: 64px 0;
}

.results-timeline {
  max-width: 560px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.results-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.results-period {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  margin-top: 2px;
}

.results-content {
  flex: 1;
}

.results-before {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.results-after {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.results-voices {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.results-voice {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.results-voice blockquote {
  border: none;
  margin: 0;
  padding: 0;
}

.results-voice p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
}

.results-voice cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
}

/* ======== ⑨ Pricing ======== */
.pricing {
  background: var(--bg-light);
  padding: 64px 0;
}

.pricing-device {
  text-align: center;
  font-size: 16px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.pricing-original {
  text-decoration: line-through;
  color: var(--text-muted);
}

.pricing-free {
  font-size: 22px;
  font-weight: 900;
  color: var(--cta);
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card--recommended {
  border-color: var(--primary);
}

.pricing-card--max {
  border-color: var(--border);
}

.pricing-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--text-white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 0 0 0 var(--radius);
}

.pricing-card-header {
  padding: 28px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-card--recommended .pricing-card-header {
  background: #EBF5FF;
}

.pricing-retention {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: var(--text-body);
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pricing-retention strong {
  color: var(--primary);
}

.pricing-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.pricing-card-price {
  color: var(--text-dark);
}

.pricing-yen {
  font-size: 14px;
  font-weight: 500;
}

.pricing-amount {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.pricing-card-tax {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.pricing-card-body {
  padding: 24px;
}

.pricing-card-body ul {
  list-style: none;
  margin-bottom: 16px;
}

.pricing-card-body li {
  padding: 8px 0;
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.pricing-card-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.premium-feature {
  font-weight: 600;
  color: var(--primary) !important;
}

.pricing-card-fit {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pricing-comparison {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.pricing-comparison-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 16px;
}

.pricing-comparison-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.pricing-comparison-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
}

.pricing-comparison-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: right;
}

.pricing-comparison-value.highlight {
  color: var(--primary);
}

.pricing-comparison-value small {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
}

/* ======== ⑩ Offer ======== */
.offer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 64px 0;
  text-align: center;
}

.offer-headline {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 32px;
}

.offer-free {
  color: var(--accent);
  font-size: 36px;
}

.offer-box {
  max-width: 480px;
  margin: 0 auto;
}

.offer-detail {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 24px;
}

.offer-device {
  margin-bottom: 16px;
}

.offer-device-label {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.offer-device-price {
  font-size: 18px;
}

.strikethrough {
  text-decoration: line-through;
  opacity: 0.5;
}

.free-text {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
}

.offer-desc {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.8;
}

/* ======== Apply Form ======== */
.apply-form {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-white);
}

.required {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-left: 4px;
}

.optional {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.5;
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #BBB;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-submit-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
}

.form-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form success/error messages */
.form-message {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.form-message--success {
  background: rgba(39, 174, 96, 0.15);
  color: #6FE8A0;
}

.form-message--error {
  background: rgba(232, 64, 64, 0.15);
  color: #FF8A8A;
}

.offer-note {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 16px;
}

/* ======== ⑪ FAQ ======== */
.faq {
  background: var(--bg-white);
  padding: 64px 0;
}

.faq-list {
  max-width: 600px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-body);
}

/* ======== ⑫ Final CTA ======== */
.final-cta {
  background: linear-gradient(180deg, var(--bg-warm) 0%, #FFECD2 100%);
  padding: 80px 0;
  text-align: center;
}

.final-cta-lead {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.final-cta-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ======== Footer ======== */
.lp-footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 40px 0;
  text-align: center;
}

.lp-footer-logo {
  height: 28px;
  margin: 0 auto 12px;
  opacity: 0.7;
}

.lp-footer-company {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 4px;
}

.lp-footer-legal {
  font-size: 12px;
  opacity: 0.5;
  margin-bottom: 8px;
}

.lp-footer-legal a {
  color: var(--text-white);
  text-decoration: none;
}

.lp-footer-legal a:hover {
  opacity: 0.7;
}

.lp-footer-copy {
  font-size: 11px;
  opacity: 0.3;
}

/* ======== Responsive (PC) ======== */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 96px 0;
  }

  .fv {
    padding: 80px 0;
  }

  .fv-headline {
    font-size: 44px;
  }

  .fv-sub {
    font-size: 18px;
  }

  .fv-image {
    max-width: 400px;
  }

  .section-headline {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .empathy-headline {
    font-size: 32px;
  }

  .empathy-list p {
    font-size: 16px;
  }

  .solution-concept {
    flex-direction: row;
    gap: 24px;
    max-width: 600px;
  }

  .solution-before,
  .solution-after {
    flex: 1;
  }

  .learning-features {
    flex-direction: row;
    gap: 20px;
  }

  .learning-card {
    flex: 1;
  }

  .pricing-cards {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .pricing-cards--3col {
    gap: 16px;
  }

  .pricing-card {
    flex: 1;
  }

  .pricing-comparison-items {
    flex-direction: row;
    gap: 16px;
  }

  .pricing-comparison-item {
    flex: 1;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .pricing-comparison-value {
    text-align: center;
  }

  .offer-headline {
    font-size: 32px;
  }

  .offer-free {
    font-size: 44px;
  }

  .final-cta-lead {
    font-size: 28px;
  }

  .fixed-cta-bar {
    display: none;
  }
}

/* ======== SP adjustments ======== */
@media (max-width: 767px) {
  .lp-footer {
    padding-bottom: 100px;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 4px;
  }

  .comparison-table thead th {
    font-size: 11px;
  }

  .comparison-table thead .highlight-col {
    font-size: 12px;
  }

  .row-label {
    font-size: 11px;
  }

  .check, .cross, .triangle {
    font-size: 16px;
  }
}
