:root {
  color-scheme: light;
  --brand: #f7931a;
  --brand-deep: #b45309;
  --ink: #0f172a;
  --muted: #475569;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #fff7ed;
  --border: #e2e8f0;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247, 147, 26, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf5 0%, #ffffff 24%, #f8fafc 100%);
  line-height: 1.65;
}

a {
  color: inherit;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 16px 80px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 0.95rem;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--brand-deep);
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f7931a 0%, #facc15 100%);
  box-shadow: 0 0 0 6px rgba(247, 147, 26, 0.14);
}

.page-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.page-intro {
  margin-top: 18px;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: #64748b;
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(247, 147, 26, 0.22);
}

.button-primary:hover {
  transform: translateY(-1px);
  background: #e78414;
}

.button-secondary {
  border: 1px solid #cbd5e1;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero-media {
  border: 1px solid rgba(247, 147, 26, 0.22);
  border-radius: 28px;
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(247, 147, 26, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.image-caption {
  margin-top: 10px;
  color: #64748b;
  font-size: 0.9rem;
}

.section {
  margin-top: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.section h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.section p,
.section li {
  color: #334155;
}

.lead {
  margin-top: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

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

.price-emphasis {
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1.1;
}

.pricing-formula {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(247, 147, 26, 0.3);
  border-radius: 16px;
  background: #fff7ed;
  color: #334155;
}

.pricing-formula strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: #fff7ed;
  color: var(--ink);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table td:nth-child(n + 2) {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.checklist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--brand);
}

.note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  background: var(--surface-strong);
  color: #7c2d12;
}

.two-column {
  display: grid;
  gap: 24px;
}

.related-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.related-link {
  display: block;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.related-link strong {
  display: block;
  margin-bottom: 6px;
}

.related-link span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.faq-list details {
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-bottom: 0;
}

.page-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
}

.page-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.page-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-footer-links a {
  text-decoration: none;
  color: #334155;
}

.page-footer-links a:hover {
  color: var(--brand-deep);
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

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