/* Cornerstone pages styles · /lld-entrepreneur, /lld-sans-apport, etc. */

.cs-hero {
  position: relative;
  padding: 14rem 0 6rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--off-white) 100%);
  overflow: hidden;
}

.cs-hero__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}

.cs-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1.6rem;
  color: var(--blue);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cs-hero__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 200;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0 0 1.6rem;
}

.cs-hero__title strong {
  font-weight: 500;
  color: var(--blue);
}

.cs-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 65ch;
  margin: 0 0 2.4rem;
}

.cs-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cs-section {
  padding: 5rem 0;
}

.cs-section--alt {
  background: var(--off-white);
}

.cs-section__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0 0 2rem;
  max-width: 720px;
}

.cs-section__lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 70ch;
  margin: 0 0 3rem;
}

.cs-prose {
  max-width: 800px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
}

.cs-prose p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 1.4rem;
}

.cs-prose h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin: 3rem 0 1.4rem;
  letter-spacing: -0.01em;
}

.cs-prose h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin: 2.2rem 0 0.9rem;
}

.cs-prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}

.cs-prose ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  padding: 0.4rem 0 0.4rem 1.6rem;
  position: relative;
}

.cs-prose ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.2rem;
}

.cs-prose blockquote {
  border-left: 3px solid var(--blue);
  padding: 0.4rem 1.6rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-mid);
  background: var(--off-white);
}

.cs-prose strong {
  font-weight: 600;
  color: var(--text-dark);
}

/* Comparison table */
.cs-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
}

.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-variant-numeric: tabular-nums;
  background: white;
}

.cs-table th,
.cs-table td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
}

.cs-table th {
  background: var(--off-white);
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
}

.cs-table td:first-child {
  font-weight: 500;
  color: var(--text-dark);
}

.cs-table tr:last-child td {
  border-bottom: none;
}

/* FAQ */
.cs-faq {
  max-width: 800px;
  margin: 0 auto;
}

.cs-faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 1.5rem 0;
}

.cs-faq__item summary {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.cs-faq__item summary::-webkit-details-marker {
  display: none;
}

.cs-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 200ms ease-out;
}

.cs-faq__item[open] summary::after {
  content: "−";
}

.cs-faq__item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 1rem 0 0;
}

/* Vehicle suggestions */
.cs-vehicles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin: 2rem 0;
}

.cs-vehicle-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  text-decoration: none;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .cs-vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  }
}

.cs-vehicle-card__brand {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.cs-vehicle-card__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.cs-vehicle-card__price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

/* Breadcrumbs */
.cs-breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.6rem;
}

.cs-breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
}

.cs-breadcrumb a:hover {
  color: var(--blue);
}

.cs-breadcrumb__sep {
  margin: 0 0.5rem;
  color: var(--text-light);
}

/* CTA band */
.cs-cta {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cs-cta__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 1rem;
  color: white;
  letter-spacing: -0.02em;
}

.cs-cta__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin: 0 0 2rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.cs-cta .btn-gold {
  background: white;
  color: var(--text-dark);
}

@media (prefers-reduced-motion: reduce) {
  .cs-vehicle-card,
  .cs-faq__item summary::after {
    transition: none;
  }
}

/* Visually hidden utility */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
