.xray-hero {
  display: block;
  text-align: center;
  padding: 120px 0 80px;
}

.xray-hero h1 {
  max-width: 800px;
  margin: 18px auto 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.xray-hero-desc {
  max-width: 640px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

.xray-hero-desc strong {
  color: var(--orange);
}

.xray-hero .hero-actions {
  justify-content: center;
}

.xray-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.xray-hero-tags span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 600;
}

.xray-hero-visual {
  max-width: 720px;
  margin: 56px auto 0;
}

.xray-terminal {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: var(--shadow);
}

.terminal-bar {
  display: flex;
  gap: 7px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--line);
}

.terminal-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.terminal-bar span:first-child {
  background: #ff5f57;
}

.terminal-bar span:nth-child(2) {
  background: #febc2e;
}

.terminal-bar span:nth-child(3) {
  background: #28c840;
}

.terminal-body {
  padding: 22px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  line-height: 2;
  text-align: left;
}

.terminal-body p {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-prompt {
  color: var(--orange);
  font-weight: 700;
  margin-right: 8px;
}

.t-link {
  color: rgba(255, 255, 255, 0.5);
  padding-left: 22px;
}

.t-dim {
  color: rgba(255, 255, 255, 0.35);
}

.t-success {
  color: #28c840;
  font-weight: 700;
}

.xray-steps {
  padding: 88px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.step-card {
  min-height: 240px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.step-card:hover {
  border-color: rgba(255, 106, 0, 0.35);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.step-card.featured {
  border-color: rgba(255, 106, 0, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 106, 0, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.step-num {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-card h3 {
  margin-top: 22px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.step-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.xray-report {
  padding: 88px 0;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.report-item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.report-item:hover {
  border-color: rgba(255, 106, 0, 0.3);
  transform: translateY(-3px);
}

.report-icon {
  font-size: 28px;
  line-height: 1;
}

.report-item h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.report-item p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.report-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 42px;
}

.format-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.format-badge strong {
  color: var(--orange);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.format-badge span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.sample-report {
  margin-top: 48px;
}

.sample-report-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 106, 0, 0.25);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.1), transparent 60%),
    rgba(255, 255, 255, 0.04);
}

.sample-report-info h3 {
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.sample-report-info p:last-child {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
}

.sample-report-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.sample-report-actions .button {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  white-space: nowrap;
}

.xray-pricing {
  padding: 88px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 12px;
}

.pricing-card {
  position: relative;
  text-align: center;
  padding: 42px 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
}

.pricing-card.featured {
  border-color: rgba(255, 106, 0, 0.4);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.price-amount {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-unit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 600;
}

.price-subtitle {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.price-includes {
  display: inline-grid;
  gap: 12px;
  margin: 28px auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

.price-includes li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  padding-left: 28px;
  position: relative;
}

.price-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.pricing-card .button.primary {
  min-height: 52px;
  padding: 0 32px;
  font-size: 16px;
  width: 100%;
}

.xray-pricing > .price-note {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.7;
}

.xray-pricing > .price-note strong {
  color: rgba(255, 255, 255, 0.7);
}

.xray-faq {
  padding: 88px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 180ms ease;
}

.faq-item[open] {
  border-color: rgba(255, 106, 0, 0.3);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  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: "+";
  color: var(--orange);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.xray-bottom-cta {
  padding: 0 0 88px;
}

@media (max-width: 980px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .xray-hero {
    padding: 80px 0 56px;
  }

  .xray-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .xray-hero .button {
    width: 100%;
  }

  .terminal-body {
    font-size: 11px;
    padding: 16px;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .report-formats {
    flex-direction: column;
    align-items: stretch;
  }

  .sample-report-inner {
    flex-direction: column;
    text-align: center;
  }

  .sample-report-actions {
    flex-direction: column;
    width: 100%;
  }

  .sample-report-actions .button {
    width: 100%;
  }

  .format-badge {
    justify-content: center;
  }

  .xray-steps,
  .xray-report,
  .xray-pricing,
  .xray-faq,
  .xray-bottom-cta {
    padding: 58px 0;
  }

  .pricing-card {
    padding: 32px 20px;
    border-radius: 28px;
  }
}
