:root {
  --bg: #ffffff;
  --ink: #050505;
  --muted: #6d6d6d;
  --rule: #d9d9d9;
  --soft: #f4f4f4;
  --accent: #ff4d00;
  --max: 1480px;
  --gutter: clamp(18px, 3vw, 44px);
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-header {
  border-bottom: 1px solid var(--ink);
  padding: 18px 0 14px;
}

.masthead {
  display: grid;
  gap: 10px;
}

.brand {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--accent);
}

.brand:hover {
  color: #cc3d00;
}

.nav-logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo-img {
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.nav-links a,
.nav-note {
  padding: 2px 0;
}

.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.nav-note {
  color: var(--muted);
}

.page {
  padding-top: 34px;
  padding-bottom: 56px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  border-bottom: 1px solid var(--ink);
  padding-bottom: clamp(34px, 7vw, 96px);
}

.headline {
  margin: 0;
  max-width: 980px;
  font-size: clamp(44px, 6.8vw, 92px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-copy {
  margin: 0 0 8px;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.15;
  font-weight: 700;
}

.small-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-head {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
  margin: 40px 0 18px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

#income-title,
#print-clients-title{
  font-size: 32px !important;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

.work-card {
  display: grid;
  gap: 10px;
  grid-column: span 4;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
}

.work-card.featured {
  grid-column: span 8;
}

.work-card.tall {
  grid-column: span 4;
}

.media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 77, 0, 0.14), transparent 34%),
    repeating-linear-gradient(
      45deg,
      #ededed 0,
      #ededed 10px,
      #f9f9f9 10px,
      #f9f9f9 20px
    );
  aspect-ratio: 4 / 3;
  border: 1px solid var(--ink);
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.media.contain img {
  object-fit: contain;
  background: #c8c8c5;
}

/* Related Work section - show full images with contain */
section[aria-labelledby="related-title"] .media img,
section[aria-labelledby="related"] .media img {
  object-fit: contain;
  background: #f4f4f4;
}

.work-card:hover .media img {
  transform: scale(1.025);
}

.featured .media {
  aspect-ratio: 16 / 9;
}

.tall .media {
  aspect-ratio: 4 / 5;
}

.media::after {
  content: attr(data-label);
  position: absolute;
  left: 12px;
  bottom: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.media:has(img)::after {
  background: rgba(255, 255, 255, 0.86);
  padding: 3px 5px;
}

.work-meta {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.work-card h2,
.work-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.98;
  text-transform: uppercase;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--ink);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-button:hover {
  background: var(--ink);
  color: var(--bg);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 88px);
  border-top: 1px solid var(--ink);
  margin-top: 52px;
  padding-top: 30px;
}

.split-section h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 76px);
  line-height: 0.96;
  text-transform: uppercase;
}

.split-section p {
  margin: 0 0 18px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 700;
}

.list-lines {
  border-top: 1px solid var(--rule);
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-lines li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  font-size: 14px;
}

.list-lines strong {
  text-transform: uppercase;
}

.page-title {
  margin: 0 0 24px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 18px;
  font-size: clamp(50px, 9vw, 132px);
  line-height: 0.88;
  text-transform: uppercase;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-filter span:first-child {
  color: var(--ink);
}

.project-hero {
  display: grid;
  gap: 18px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 26px;
}

.project-hero .media {
  aspect-ratio: 16 / 8;
}

.project-title {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.92;
  text-transform: uppercase;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
}

.project-meta div {
  display: grid;
  gap: 3px;
}

.project-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-meta strong {
  font-size: 17px;
}

.project-body {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 88px);
  margin-top: 30px;
}

.project-body h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 74px);
  line-height: 0.96;
  text-transform: uppercase;
}

.project-body p {
  margin: 0 0 18px;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 700;
}

.detail-strip {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 24px);
  margin-top: 34px;
}

.detail-strip .media {
  aspect-ratio: auto;
  height: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.contact-lead {
  margin: 0 0 26px;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-links {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--ink);
  padding: clamp(18px, 2.5vw, 28px);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  min-height: 44px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.site-footer {
  border-top: 1px solid var(--ink);
  padding: 18px 0 26px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
}

@media (max-width: 860px) {
  .intro-grid,
  .split-section,
  .project-body,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .editorial-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .work-card,
  .work-card.featured,
  .work-card.tall {
    grid-column: span 6;
  }

  .project-meta,
  .detail-strip {
    grid-template-columns: 1fr 1fr;
  }

  .project-hero .media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .site-nav {
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
  }

  .nav-logo-center {
    position: static;
    transform: none;
    order: -1;
    margin-bottom: 8px;
  }

  .nav-links {
    justify-content: center;
    gap: 12px 24px;
  }

  .nav-note {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 12px;
  }

  .site-nav,
  .section-head {
    display: grid;
    justify-content: stretch;
  }

  .nav-logo-center {
    position: static;
    transform: none;
    order: -1;
    margin: 8px 0;
  }

  .nav-links {
    justify-content: center;
    font-size: 12px;
    gap: 8px 16px;
  }

  .page {
    padding-top: 24px;
  }

  .headline,
  .page-title,
  .project-title {
    overflow-wrap: anywhere;
  }

  .project-meta,
  .detail-strip,
  .list-lines li {
    grid-template-columns: 1fr;
  }

  .contact-form {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Business Plan Page Styles */
.data-table {
  overflow-x: auto;
  margin: 24px 0;
}

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

.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}

.data-table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  background: var(--bg);
}

.data-table tr:hover td {
  background: rgba(255, 77, 0, 0.04);
}

.client-type {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--ink);
  height: 100%;
}

.client-type h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  text-transform: uppercase;
}

.client-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 16px;
  font-size: 13px;
}

.client-meta span {
  color: var(--muted);
  text-transform: uppercase;
}

.client-meta strong {
  color: var(--accent);
  font-size: 14px;
}

.client-type ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
}

.client-type li {
  margin-bottom: 8px;
}

.income-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.income-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--ink);
  background: var(--bg);
}

.income-card.highlight {
  background: var(--ink);
  color: var(--bg);
}

.income-card .level {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  opacity: 0.7;
}

.income-card .range {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.income-card .unit {
  font-size: 12px;
  opacity: 0.7;
}

.price-reference {
  background: var(--bg);
  padding: 24px;
  border: 1px solid var(--ink);
}

.price-reference h4 {
  margin: 0 0 16px 0;
  font-size: 14px;
  text-transform: uppercase;
}

.swot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.swot-card {
  padding: 28px;
  border: 1px solid var(--ink);
}

.swot-card.strength {
  border-left: 4px solid #22c55e;
}

.swot-card.weakness {
  border-left: 4px solid #ef4444;
}

.swot-card.opportunity {
  border-left: 4px solid #3b82f6;
}

.swot-card.threat {
  border-left: 4px solid #f59e0b;
}

.swot-card h3 {
  margin: 0 0 16px 0;
  font-size: 16px;
  text-transform: uppercase;
}

.swot-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.8;
}

.swot-card li {
  margin-bottom: 8px;
}

.ai-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--ink);
  background: var(--bg);
}

.stat-card .stat-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
}

.stat-card .stat-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stat-card .stat-change {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.quote-block {
  width: 80vw;
  padding: 24px 28px;
  text-align: center;
  background: rgba(255, 77, 0, 0.06);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

.pricing-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 34px;
}

.pricing-block {
  background: var(--bg);
  border: 1px solid var(--ink);
  padding: 28px;
}

.pricing-block h3 {
  margin: 0 0 20px 0;
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}

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

.price-list strong {
  color: var(--accent);
  font-size: 13px;
}

.cost-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 34px;
}

.cost-block {
  background: var(--bg);
  border: 1px solid var(--ink);
  padding: 28px;
}

.cost-block h3 {
  margin: 0 0 20px 0;
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.cost-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cost-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}

.cost-list li.total {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
  border-bottom: none;
  font-weight: 700;
}

.cost-list li.total strong {
  color: var(--accent);
}

.revenue-forecast {
  margin-top: 48px;
}

.revenue-forecast h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.forecast-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.forecast-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--ink);
}

.forecast-card.conservative {
  background: rgba(245, 158, 11, 0.08);
}

.forecast-card.neutral {
  background: rgba(59, 130, 246, 0.08);
}

.forecast-card.optimistic {
  background: rgba(34, 197, 94, 0.08);
}

.forecast-card h4 {
  margin: 0 0 16px 0;
  font-size: 14px;
  text-transform: uppercase;
}

.forecast-card .monthly {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--accent);
}

.forecast-card .yearly {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px 0;
}

.forecast-card .detail {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.channel-category {
  background: var(--bg);
  border: 1px solid var(--ink);
  padding: 24px;
}

.channel-category h3 {
  margin: 0 0 16px 0;
  font-size: 14px;
  text-transform: uppercase;
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.risks-list {
  margin-top: 34px;
}

.risk-item {
  padding: 20px 24px;
  border: 1px solid var(--ink);
  margin-bottom: 12px;
}

.risk-item:last-child {
  margin-bottom: 0;
}

.risk-item h4 {
  margin: 0 0 8px 0;
  font-size: 14px;
  text-transform: uppercase;
}

.risk-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.canvas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.canvas-item {
  padding: 20px;
  border: 1px solid var(--ink);
  background: var(--bg);
}

.canvas-item h4 {
  margin: 0 0 12px 0;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent);
}

.canvas-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.quotes-list {
  margin-top: 34px;
}

.quotes-list blockquote {
  margin: 0 0 16px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 77, 0, 0.04);
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

.quotes-list blockquote:last-child {
  margin-bottom: 0;
}

.sources-list {
  margin-top: 34px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--ink);
}

.sources-list p {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.8;
}

.sources-list ul {
  margin: 0 0 16px 0;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}

.sources-list li {
  margin-bottom: 6px;
}

.source-note {
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

/* Market Data Section - New Design */
.market-data-section {
  margin-top: 48px;
}

.market-subsection {
  margin-bottom: 48px;
}

.market-subsection:last-child {
  margin-bottom: 0;
}

.subsection-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: var(--ink);
}

.subsection-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
}

.market-table table,
.region-table table {
  border: 1px solid var(--ink);
}

.market-table thead,
.region-table thead {
  background: var(--ink);
  color: var(--bg);
}

.market-table th,
.region-table th {
  background: transparent;
  color: var(--bg);
  font-weight: 700;
  padding: 14px 16px;
}

.market-table td,
.region-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
}

.market-table tbody tr:last-child td,
.region-table tbody tr:last-child td {
  border-bottom: none;
}

.market-table .growth,
.region-table .percent {
  color: var(--accent);
  font-weight: 600;
}

.market-table .highlight-row {
  background: rgba(255, 77, 0, 0.06);
}

.market-table .highlight-row td {
  font-weight: 600;
}

.key-points {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--ink);
}

.key-points h4 {
  margin: 0 0 16px 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}

.key-points ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.key-points li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.key-points li:last-child {
  margin-bottom: 0;
}

.key-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.key-points li strong {
  color: var(--ink);
  font-weight: 700;
}

.key-points.simple-list {
  margin-top: 0;
}

/* Channel description */
.channel-desc {
  margin: 16px 0 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* Cases section */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.case-category {
  background: var(--bg);
  border: 1px solid var(--ink);
  padding: 24px;
}

.case-category h3 {
  margin: 0 0 16px 0;
  font-size: 14px;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.case-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.case-list li {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.case-list li:last-child {
  margin-bottom: 0;
}

.case-list strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.case-list span {
  color: var(--muted);
}

/* Risk items with detailed content */
.risk-desc {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.6;
}

.risk-solution {
  margin: 0 0 8px 0;
  font-size: 13px;
}

.risk-item ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.8;
}

.risk-item li {
  margin-bottom: 6px;
}

/* Structure table */
.structure-table {
  overflow-x: auto;
  margin-top: 34px;
}

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

.structure-table th,
.structure-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}

.structure-table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
  background: var(--bg);
}

.structure-table td:first-child {
  font-weight: 700;
  width: 60px;
  text-align: center;
}

.structure-table tr:hover td {
  background: rgba(255, 77, 0, 0.04);
}

/* Business Plan Responsive */
@media (max-width: 900px) {
  .income-levels {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-stats {
    grid-template-columns: 1fr;
  }

  .pricing-sections,
  .cost-sections {
    grid-template-columns: 1fr;
  }

  .forecast-cards {
    grid-template-columns: 1fr;
  }

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

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

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

  .income-levels {
    grid-template-columns: 1fr;
  }

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

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

  .data-table th,
  .data-table td {
    padding: 8px 10px;
  }

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

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

  .structure-table th,
  .structure-table td {
    padding: 10px 12px;
  }
}
