.pas-intro {
  margin-bottom: 40px;
  max-width: 600px;
}

.pas-intro p {
  line-height: 1.7;
  margin-bottom: 12px;
}

.pas-problem {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
}

.pas-agitate {
  font-size: 1rem;
  color: var(--gray-dark);
}

.pas-agitate em {
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
}

.pas-solve {
  font-size: 1rem;
  color: var(--gray-dark);
  padding-left: 14px;
  border-left: 3px solid var(--yellow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.field-hint {
  font-size: 0.78rem;
  color: var(--gray);
}

.result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 560px) {
  .result-cards {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.result-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 2px 10px rgba(20,18,16,0.06), 0 0 0 1px rgba(20,18,16,0.04);
}

.result-card--hero {
  background: var(--black);
  grid-column: span 2;
  box-shadow: 0 4px 24px rgba(20,18,16,0.18), 0 0 0 1px rgba(242,184,37,0.12);
  border-top: 2px solid var(--yellow);
}

@media (min-width: 560px) {
  .result-card--hero {
    grid-column: span 1;
  }
}

.result-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 10px;
}

.result-card--hero .result-label {
  color: rgba(212,207,191,0.7);
}

.result-value {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--yellow);
  font-family: var(--mono);
}

.result-value--sm {
  font-size: 1.65rem;
  color: var(--black);
  letter-spacing: -0.03em;
}

.result-sub {
  font-size: 0.82rem;
  color: rgba(212,207,191,0.65);
  margin-top: 8px;
  font-weight: 500;
}

.plain-language {
  font-size: 0.97rem;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-bottom: 20px;
  padding: 18px 22px;
  background: var(--white);
  border-radius: 12px;
  border-left: 3px solid var(--yellow);
  min-height: 62px;
  box-shadow: 0 2px 10px rgba(20,18,16,0.05);
}

.results-section {
  margin-bottom: 36px;
}

.chart-container {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 22px 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(20,18,16,0.06), 0 0 0 1px rgba(20,18,16,0.04);
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: transparent;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  min-height: 48px;
  font-family: var(--font);
  letter-spacing: 0.01em;
}

.share-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(224,90,40,0.04);
}

.info-section,
.faq-section {
  margin-top: 56px;
}

.info-section h2,
.faq-section h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}

.info-section p {
  font-size: 0.97rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 640px;
}

details {
  border-bottom: 1px solid var(--gray-light);
  content-visibility: auto;
  contain-intrinsic-size: 0 60px;
}

details:first-of-type {
  border-top: 1px solid var(--gray-light);
}

summary {
  padding: 18px 0;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.2s;
  flex-shrink: 0;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  padding: 0 0 18px;
  font-size: 0.93rem;
  color: var(--gray-dark);
  line-height: 1.75;
  max-width: 620px;
}

.ebook-section {
  margin-top: 64px;
  margin-bottom: 8px;
}

.ebook-card {
  background: var(--black);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid rgba(242,184,37,0.2);
  box-shadow: 0 8px 40px rgba(20,18,16,0.18), 0 0 0 1px rgba(242,184,37,0.08);
  position: relative;
  overflow: hidden;
}

.ebook-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}

.ebook-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--yellow);
  background: rgba(242,184,37,0.12);
  border: 1px solid rgba(242,184,37,0.25);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.ebook-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.ebook-subtitle {
  font-size: 1rem;
  color: rgba(212,207,191,0.7);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}

.ebook-hook {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 10px;
}

.ebook-body {
  font-size: 0.95rem;
  color: rgba(212,207,191,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}

.ebook-body em {
  font-style: normal;
  color: var(--yellow);
}

.ebook-closer {
  font-size: 0.9rem;
  color: rgba(212,207,191,0.6);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
  border-left: 2px solid rgba(242,184,37,0.3);
  padding-left: 14px;
}

.ebook-bullets {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ebook-bullets li {
  font-size: 0.92rem;
  color: rgba(212,207,191,0.85);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.ebook-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
}

.ebook-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ebook-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ebook-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--yellow);
  font-family: var(--mono);
  letter-spacing: -0.04em;
  line-height: 1;
}

.ebook-price-note {
  font-size: 0.78rem;
  color: rgba(212,207,191,0.5);
  letter-spacing: 0.02em;
}

.ebook-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--yellow);
  color: var(--black);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s, transform 0.1s;
  min-height: 52px;
  white-space: nowrap;
}

.ebook-btn:hover {
  background: #f5c840;
  transform: translateY(-1px);
}

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

.ebook-guarantee {
  font-size: 0.78rem;
  color: rgba(212,207,191,0.4);
}

@media (max-width: 559px) {
  .ebook-card {
    padding: 28px 22px;
  }
  .ebook-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .ebook-btn {
    width: 100%;
    justify-content: center;
  }
}

.site-footer {
  background: var(--black);
  color: var(--gray);
  text-align: center;
  padding: 36px max(24px, env(safe-area-inset-right)) calc(36px + env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  font-size: 0.82rem;
  line-height: 1.9;
}

.site-footer p + p {
  margin-top: 2px;
}

@media (max-width: 559px) {
  .mode-tabs {
    width: 100%;
  }
  .mode-tab {
    flex: 1;
    padding: 8px 10px;
    font-size: 0.82rem;
  }
  .result-value {
    font-size: 2.4rem;
  }
}
