:root {
  --accent-red: #e31e24;
  --primary-blue: #0f1f3d;
  --text-dark: #1a1a1a;
  --text-grey: #555;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
  --bg-light: #f5f3ee;
  --border-light: #e0ddd5;
}

/* =============================================
   STARTUP LEGAL FOUNDATION SECTION
   ============================================= */
.legal-foundation-section {
  background-color: #f9f9fa;
  padding: 90px 0;
}
.legal-foundation-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
}
.legal-foundation-heading {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.25;
}
.legal-foundation-text {
  font-family: var(--font-body);
  color: var(--text-grey);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.legal-foundation-text .text-red {
  color: var(--accent-red);
}
/* --- New Image Grid Styles --- */
.triple-image-grid {
  display: flex;
  gap: 15px; /* Spacing between images */
  justify-content: center;
}

.grid-image-item {
  flex: 1;
  aspect-ratio: 1 / 2.5; /* Makes them tall and vertical */
  overflow: hidden;
  border-radius: 12px; /* Rounded corners from image */
}

.grid-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the tall box */
  display: block;
  /* Optional: filter to match the moody dark look of the image */
  filter: brightness(0.8) contrast(1.1);
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .legal-foundation-heading {
    font-size: 2.2rem;
  }

  .triple-image-grid {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .triple-image-grid {
    gap: 8px;
  }
  .grid-image-item {
    border-radius: 8px;
  }
}

/* =============================================
   INVESTOR READY SECTION
   ============================================= */
.investor-ready-section {
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.investor-ready-section::before,
.investor-ready-section::after {
  content: "";
  position: absolute;
  top: -10%;
  width: 150px;
  height: 120%;
  background-color: rgba(255, 255, 255, 0.015);
  z-index: 0;
  pointer-events: none;
}

.investor-ready-section::before {
  left: 50%;
  transform-origin: top left;
  transform: rotate(25deg);
}
.investor-ready-section::after {
  right: 50%;
  transform-origin: top right;
  transform: rotate(-25deg);
}

.investor-ready-section .container {
  position: relative;
  z-index: 1;
}
.investor-ready-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
}
.investor-ready-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.25;
}
.investor-ready-desc {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}
.investor-checks-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 0 200px 0 200px;
}
.investor-check-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.investor-check-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.investor-check-item svg {
  color: var(--accent-red);
  flex-shrink: 0;
}
.investor-check-item span {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.investor-ready-footer {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  font-style: italic;
}

@media (max-width: 1055px) {
  .investor-checks-wrapper {
    padding: 0;
  }
}

/* =============================================
   18 DOCUMENTS SECTION
   ============================================= */
/* --- Document Grid Section Styles --- */
.docs-grid-section {
  background-color: #fdfdfd;
  padding: 100px 0;
}

.doc-eyebrow {
  color: #e31e24; /* Primary Red */
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.doc-main-heading {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #222;
  margin-bottom: 20px;
}

.doc-subtext {
  font-size: 1rem;
  color: #777;
  max-width: 650px;
  margin: 0 auto;
}

/* Card Styling */
.doc-category-card {
  background: #fff;
  border: 1px solid #eeeeee;
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.doc-category-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

/* Header & Roman Icons */
.card-header-flex {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.roman-icon-box {
  display: flex;
  gap: 4px;
  margin-right: 20px;
  min-width: 35px;
}

.roman-icon-box span {
  display: block;
  width: 6px;
  height: 35px;
  background-color: #e31e24;
}

.roman-text-icon {
  font-family: var(--font-heading);
  color: #e31e24;
  font-size: 2.2rem;
  font-weight: 400;
  margin-right: 20px;
  min-width: 35px;
  line-height: 1;
}

.doc-card-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: #222;
  margin: 0;
}

.doc-card-intro {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Numbered List Styling */
.doc-item-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-grow: 1; /* Pushes summary text to the bottom */
}

.doc-item-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f6f6f6;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.5;
  display: flex;
}

.doc-item-list li:last-child {
  border-bottom: none;
}

.doc-item-list li .num {
  color: #e31e24;
  font-weight: 700;
  margin-right: 15px;
  font-size: 1.1rem;
  display: inline-block;
  min-width: 20px;
}

.doc-item-list li strong {
  color: #222;
  font-weight: 600;
}

/* Red Italic Summary Text */
.doc-card-summary {
  color: #e31e24;
  font-style: italic;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1199px) {
  .doc-category-card {
    padding: 40px 30px;
  }
  .doc-main-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .doc-main-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .docs-grid-section {
    padding: 60px 0;
  }
  .doc-category-card {
    padding: 30px 25px;
  }
  .doc-main-heading {
    font-size: 2rem;
  }
  .doc-card-title {
    font-size: 1.5rem;
  }
}
/* =============================================
   CTA SECTION
   ============================================= */
/* --- Order CTA Section Styles --- */
.order-cta-section {
  background-color: #061527; /* Dark navy background */
  padding: 80px 0;
  color: #ffffff;
}

.order-cta-title {
  font-family: var(--font-heading); /* Serif font like Playfair */
  font-size: 3.5rem;
  font-weight: 400;
  margin: 0;
}

.order-cta-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px; /* Limits width to match the image layout */
  margin: 0;
}

/* Square Red Button Styling */
.btn-order-now {
  background-color: #e31e24; /* Your accent red */
  color: #ffffff !important;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 45px;
  border-radius: 0; /* Ensures square corners */
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid #e31e24;
}

.btn-order-now:hover {
  background-color: #ffffff;
  color: #e31e24 !important;
  border-color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .order-cta-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 767px) {
  .order-cta-section {
    padding: 60px 0;
    text-align: center;
  }
  .order-cta-text {
    margin: 0 auto;
  }
  .order-cta-title {
    font-size: 2.4rem;
  }
  .btn-order-now {
    width: 100%; /* Full width button on mobile */
  }
}
/* =============================================
   TSL PACKAGES SECTION
   ============================================= */
.packages-section {
  background-color: #fff;
  padding: 90px 0 80px;
}
.packages-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
}
.packages-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 12px 0 14px;
}
.packages-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-grey);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Tab buttons */
.packages-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  border-radius: 2px;

  overflow: hidden;
  max-width: 720px;
  margin: 0 auto 50px;
}
.pkg-tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-red);
  background: #faf9f7;
  border: 2px solid #e0e0e0;
  padding: 14px 28px;
  cursor: default;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  flex: 1;
  white-space: nowrap;
}

.pkg-tab:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

/* Package content panels */
.pkg-panel {
  display: none;
}
.pkg-panel.active {
  display: block;
}

/* Package card */
.pkg-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.pkg-card-header {
  background: var(--primary-blue);
  padding: 40px 48px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.pkg-card-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-red);
  display: block;
  margin-bottom: 8px;
}
.pkg-card-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.pkg-card-tagline {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.pkg-card-price-block {
  text-align: right;
  flex-shrink: 0;
}
.pkg-card-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  display: block;
}
.pkg-card-price-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 4px;
}

.pkg-card-body {
  padding: 36px 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.pkg-card-col-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-grey);
  margin-bottom: 14px;
}
.pkg-includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pkg-includes-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-dark);
  line-height: 1.6;
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px solid #f3f1ec;
}
.pkg-includes-list li:last-child {
  border-bottom: none;
}
.pkg-includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-red);
}
.pkg-ideal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pkg-ideal-list li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-grey);
  line-height: 1.6;
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px solid #f3f1ec;
}
.pkg-ideal-list li:last-child {
  border-bottom: none;
}
.pkg-ideal-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-size: 0.8rem;
}
.pkg-card-footer {
  padding: 20px 48px 28px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.pkg-card-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-grey);
  font-style: italic;
}
.pkg-cta-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-red);
  border: none;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  display: inline-block;
}
.pkg-cta-btn:hover {
  background: #8a1324;
  color: #fff;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .legal-foundation-heading {
    font-size: 2.4rem;
  }
  .investor-ready-heading {
    font-size: 2.5rem;
  }
  .documents-heading {
    font-size: 2.4rem;
  }
  .packages-heading {
    font-size: 2.4rem;
  }
  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pkg-card-header {
    flex-direction: column;
    gap: 16px;
  }
  .pkg-card-price-block {
    text-align: left;
  }
  .pkg-card-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pkg-card-header,
  .pkg-card-body,
  .pkg-card-footer {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 768px) {
  .page-header-title {
    font-size: 2.4rem;
  }
  .legal-foundation-heading {
    font-size: 2rem;
  }
  .investor-ready-heading {
    font-size: 2rem;
  }
  .documents-heading {
    font-size: 2rem;
  }
  .packages-heading {
    font-size: 2rem;
  }
  .documents-grid {
    grid-template-columns: 1fr;
  }
  .investor-checks-wrapper {
    gap: 10px;
  }
  .investor-check-item {
    padding: 10px 18px;
  }
  .pkg-tab {
    padding: 12px 14px;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }
  .pkg-card-header,
  .pkg-card-body,
  .pkg-card-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pkg-card-name {
    font-size: 2rem;
  }
  .pkg-card-price {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .investor-check-item {
    width: 100%;
    justify-content: center;
  }
  .packages-tabs {
    flex-direction: column;
  }
  .pkg-tab {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .pkg-tab:last-child {
    border-bottom: none;
  }
  .pkg-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .pkg-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* =============================================
   SHARED EYEBROW (reused in both sections)
   ============================================= */
.sp-eyebrow {
  color: var(--accent-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

/* =============================================
   STARTUP PACKAGES SECTION
   ============================================= */
.startup-packages-section {
  background: var(--bg-light);
  padding: 90px 0;
}
.sp-heading {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0 auto 12px;
  max-width: 600px;
}
.sp-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-grey);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Tier grid */
.sp-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Tier card */
.sp-tier-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
}
.sp-tier-card.sp-tier-featured {
  border: 2px solid var(--accent-red);
}
.sp-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 2px 2px;
  white-space: nowrap;
}
.sp-tier-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}
.sp-tier-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 4px;
}
.sp-tier-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-grey);
  margin-bottom: 16px;
}
.sp-tier-everything {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sp-tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  flex: 1;
}
.sp-tier-list li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dark);
  line-height: 1.6;
  padding: 5px 0 5px 16px;
  position: relative;
  border-bottom: 1px solid #f5f3ee;
}
.sp-tier-list li:last-child {
  border-bottom: none;
}
.sp-tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-red);
}

/* Shared button */
.sp-tier-btn {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  background: transparent;
  border: 1.5px solid #ccc;
  padding: 13px 20px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  margin-top: auto;
}
.sp-tier-btn:hover {
  background: var(--bg-light);
  border-color: var(--text-dark);
  color: var(--text-dark);
}
.sp-tier-btn--primary {
  background: var(--accent-red);
  color: #fff;
  border-color: var(--accent-red);
}
.sp-tier-btn--primary:hover {
  background: #8a1324;
  border-color: #8a1324;
  color: #fff;
}
/* =============================================
  CORE FOCUS SECTION
   ============================================= */

/* --- Core Focus Section Styles --- */
.core-focus-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.focus-eyebrow {
  color: #e31e24; /* Your accent red */
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 15px;
}

.focus-main-heading {
  font-family: var(--font-heading); /* Serif font for high-end look */
  font-size: 3.2rem;
  color: #222;
  margin-bottom: 20px;
}

.focus-subtext {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Card Styling */
.focus-card {
  border: 1px solid #dfdfdf;
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.focus-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border-color: #e0e0e0;
}

.focus-number {
  display: block;
  font-size: 3.8rem;
  color: #d1cfcf9c; /* Very light grey for the number */
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
}

.focus-card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.focus-card-desc {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* List with Dividers and Red Bullets */
.focus-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  flex-grow: 1; /* Pushes the link to the bottom */
}

.focus-list li {
  padding: 14px 0 14px 20px;
  position: relative;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.4;
}

.focus-list li:last-child {
  border-bottom: none;
}

.focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px; /* Centers the dot with text line */
  width: 6px;
  height: 6px;
  background-color: #e31e24;
  border-radius: 50%;
}

/* Link Styling */
.focus-link {
  color: #e31e24;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
  letter-spacing: 1.5px;
  display: inline-block;
  transition: color 0.3s;
}

.focus-link:hover {
  color: #222;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1199px) {
  .focus-card {
    padding: 40px 30px;
  }
  .focus-main-heading {
    font-size: 2.6rem;
  }
}

@media (max-width: 991px) {
  .core-focus-section {
    padding: 70px 0;
  }
  .focus-main-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .focus-card {
    padding: 35px 25px;
  }
  .focus-number {
    font-size: 3rem;
  }
}

/* =============================================
   INVESTOR READINESS CHECKLIST SECTION
   ============================================= */
.checklist-section {
  background-color: var(--accent-red);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.checklist-watermark {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.checklist-watermark svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.checklist-section .container {
  position: relative;
  z-index: 1;
}
.checklist-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0 auto 16px;
  max-width: 680px;
}
.checklist-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin: 0 auto 36px;
}

/* Form */
.checklist-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.checklist-input {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  padding: 14px 18px;
  width: 100%;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.checklist-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.checklist-input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}
.checklist-input--full {
  width: 100%;
}
.checklist-submit-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 2px;
  padding: 16px 20px;
  cursor: pointer;
  width: 100%;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  margin-top: 4px;
}
.checklist-submit-btn:hover {
  background: #fff;
  color: var(--accent-red);
}

/* =============================================
   SPEAK WITH TSL SECTION
   ============================================= */
.speak-tsl-section {
  background: #fff;
  padding: 90px 0;
}
.speak-tsl-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-red);
  display: block;
  margin-bottom: 14px;
}
.speak-tsl-heading {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}
.speak-tsl-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-grey);
  line-height: 1.85;
  max-width: 380px;
}

/* Right side items */
.speak-tsl-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.speak-tsl-item {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-bottom: none;
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}
.speak-tsl-item:last-child {
  border-bottom: 1px solid var(--border-light);
}
.speak-tsl-item-bar {
  display: block;
  width: 3px;
  align-self: stretch;
  background: var(--accent-red);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.speak-tsl-item-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  padding-left: 16px;
}

/* CTA button */
.speak-tsl-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent-red);
  border: none;
  padding: 16px 32px;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
}
.speak-tsl-btn:hover {
  background: #8a1324;
  color: #fff;
}

/* =============================================
   RESPONSIVE — CHECKLIST & SPEAK TSL
   ============================================= */
@media (max-width: 991px) {
  .checklist-heading {
    font-size: 2.4rem;
  }
  .speak-tsl-heading {
    font-size: 2.4rem;
  }
  .speak-tsl-desc {
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .checklist-section,
  .speak-tsl-section {
    padding: 60px 0;
  }
  .checklist-heading {
    font-size: 2rem;
  }
  .checklist-form-row {
    grid-template-columns: 1fr;
  }
  .speak-tsl-heading {
    font-size: 2rem;
  }
  .speak-tsl-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .checklist-heading {
    font-size: 1.8rem;
  }
  .speak-tsl-heading {
    font-size: 1.8rem;
  }
  .speak-tsl-item {
    padding: 16px 18px;
  }
}
/* <!-- ===========================
     Global Section Settings
     =========================== --> */
/* --- Global Section Settings --- */
.eyebrow {
  color: #e31e24;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title-serif {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: #222;
  font-weight: 400;
}

.section-subtitle {
  max-width: 650px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Recent Insights Styles --- */
.insights-section {
  padding: 100px 0;
  background-color: #f9f9f8; /* Very light off-white */
}

.btn-red-solid {
  background-color: #e31e24;
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-red-solid:hover {
  background-color: #222;
}

.insight-card {
  background: #fff;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease;
}

.category-tag {
  background-color: #fdf2f2; /* Light pink background */
  color: #e31e24;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 25px;
  align-self: flex-start;
}

.card-title-serif {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 15px;
  color: #222;
}

.card-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.read-more-link {
  color: #e31e24;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* --- Case Studies Styles --- */
.case-studies-section {
  padding: 100px 0;
  background-color: #fff;
}

.case-card {
  border: 1px solid #f0f0f0;
  height: 100%;
}

.case-img-wrapper {
  height: 220px;
  overflow: hidden;
}

.case-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-content {
  padding: 30px;
}

.case-tag {
  color: #e31e24;
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .section-title-serif {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .insights-section,
  .case-studies-section {
    padding: 60px 0;
  }
  .section-title-serif {
    font-size: 2rem;
  }
  .insight-card {
    padding: 30px;
  }
}
