/* ====================================================
   CrateView — About Page Styles
   ==================================================== */

.cv-about {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 0 10px;
}

/* ── Header ── */
.cv-about-header {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 0;
}

.cv-about-header h1 {
  margin: 0 0 20px;
  line-height: 1;
}

.cv-about-logotype {
  height: 100px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.cv-about-tagline {
  font-family: 'Charter Web', Charter, Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: #2f2f2f;
  margin-bottom: 24px;
}

.cv-about-divider {
  width: 80px;
  height: 3px;
  background: #d17d34;
  margin: 0 auto;
}

/* ── Sections ── */
.cv-about-section {
  margin-bottom: 48px;
}

.cv-about-section h2 {
  font-family: 'Charter Web', Charter, Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--text);
  margin: 0 0 24px;
  padding-bottom: 6px;
  border-bottom: 2px solid #d17d34;
  display: inline-block;
}

.cv-about-section p {
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0 0 14px;
}

.cv-about-section p em {
  color: #d17d34;
  font-style: italic;
}

/* ── Feature cards ── */
.cv-feature {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 28px 22px;
  margin-bottom: 20px;
  transition: border-color 0.2s ease;
}

.cv-feature:hover {
  border-color: #d17d34;
}

.cv-feature:last-child {
  margin-bottom: 0;
}

.cv-feature h3 {
  font-family: 'Charter Web', Charter, Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: #2f2f2f;
  margin: 0 0 8px;
}

.cv-feature p {
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 0;
}

/* ── Screenshot placeholders (swap for real images later) ── */
.cv-screenshot {
  background: rgba(0,0,0,0.04);
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  margin-top: 14px;
  color: #888;
  font-size: 13px;
  font-style: italic;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.cv-screenshot span {
  display: inline-block;
  margin-right: 6px;
  font-style: normal;
}

.cv-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ── Steps ── */
.cv-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 48px;
  margin-bottom: 18px;
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
}

.cv-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  background: #2f2f2f;
  color: var(--surface);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cv-steps li strong {
  color: var(--text);
}

/* ── Under the Hood grid ── */
.cv-hood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.cv-hood-item {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.cv-hood-item h4 {
  font-family: 'Charter Web', Charter, Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: #2f2f2f;
  margin: 0 0 6px;
}

.cv-hood-item p {
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #4c4c4c;
  margin: 0;
}

/* ── Footer CTA ── */
.cv-about-footer {
  text-align: center;
  margin-top: 56px;
  padding-top: 36px;
  border-top: .9px solid #2f2f2f;
}

.cv-about-footer .cv-cta-line {
  font-family: 'Charter Web', Charter, Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--text);
  margin-bottom: 4px;
}

.cv-about-footer .cv-cta-sub {
  font-family: 'Charter Web', Charter, Georgia, 'Times New Roman', serif;
  font-size: 18px;
  color: #d17d34;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .cv-about { padding: 24px 0 48px; }
  .cv-about-header { margin-top: 44px; }
  .cv-about-logotype { height: 78px; }
  .cv-about-tagline { font-size: 19px; }
  .cv-about-section h2 { font-size: 19px; }
  .cv-feature { padding: 20px; }
  .cv-feature h3 { font-size: 19px; }
  .cv-hood-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .cv-about-header { margin-top: 36px; }
  .cv-about-logotype { height: 60px; }
  .cv-about-tagline { font-size: 16px; }
  .cv-about-section h2 { font-size: 18px; }
  .cv-feature { padding: 16px; }
  .cv-feature h3 { font-size: 17px; }
  .cv-about-footer .cv-cta-line { font-size: 24px; }
}
