/* ═══════════════════════════════════════════════
   SUNDEK CASE STUDY — styles.css
   No CSS variables, no clamp(), no fr units,
   no unicode escapes — max CMS compatibility
   ═══════════════════════════════════════════════ */

.cs-wrapper {
  font-family: 'Montserrat', sans-serif;
  color: #212529;
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
}
.cs-wrapper p {
  font-size: 15px;
  line-height: 1.8;
  color: #212529;
  margin-bottom: 16px;
}
.cs-wrapper p:last-child { margin-bottom: 0; }
.cs-wrapper h1, .cs-wrapper h2 { margin: 0; }

/* ── HERO ── */
.cs-hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  max-height: 800px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.cs-hero-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  -webkit-transition: -webkit-transform 8s ease;
  transition: transform 8s ease;
}
.cs-hero:hover .cs-hero-img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.cs-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.75) 100%);
}
.cs-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 64px;
  width: 100%;
}
.cs-hero-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  background: #F58220;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.cs-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
}
.cs-hero h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 20px;
}
.cs-hero h1 em {
  font-style: normal;
  color: #F58220;
  display: block;
}
.cs-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 600;
  max-width: 480px;
  line-height: 1.65;
  border-left: 3px solid #F58220;
  padding-left: 16px;
}

/* ── STATS BAR ── */
.cs-stats-bar { background: #212529; }
.cs-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cs-stat-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.cs-stat-item:hover { background: rgba(255,255,255,0.04); }
.cs-stat-item:last-child { border-right: none; }
.cs-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: #F58220;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.cs-stat-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── SECTIONS ── */
.cs-section { padding: 80px 0; }
.cs-section--alt { background: #F7F7F7; }
.cs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── EYEBROW + TITLES ── */
.cs-eyebrow {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #F58220;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cs-eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  background: #F58220;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.cs-eyebrow--teal { color: #00B3B8; }
.cs-eyebrow--teal::before { background: #00B3B8; }

.cs-section-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #212529;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* ── TWO COL ── */
.cs-two-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cs-two-col > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
.cs-two-col--wide > *:first-child  { -webkit-box-flex: 1.15; -ms-flex: 1.15; flex: 1.15; }
.cs-two-col--wide > *:last-child   { -webkit-box-flex: 0.85; -ms-flex: 0.85; flex: 0.85; }
.cs-two-col--wide-rev > *:first-child { -webkit-box-flex: 0.85; -ms-flex: 0.85; flex: 0.85; }
.cs-two-col--wide-rev > *:last-child  { -webkit-box-flex: 1.15; -ms-flex: 1.15; flex: 1.15; }

/* ── OVERVIEW META ── */
.cs-overview-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1px;
  background: #E5E5E5;
  border: 1px solid #E5E5E5;
  margin-top: 36px;
}
.cs-meta-cell {
  background: #ffffff;
  padding: 18px 20px;
  border-left: 3px solid transparent;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  width: calc(50% - 1px);
}
.cs-meta-cell:hover { border-left-color: #F58220; }
.cs-meta-cell--full { width: 100%; }
.cs-meta-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #666666;
  display: block;
  margin-bottom: 5px;
}
.cs-meta-value {
  font-size: 13px;
  font-weight: 700;
  color: #212529;
  line-height: 1.4;
}

/* ── CALLOUT ── */
.cs-callout {
  background: #FFF4EC;
  border-left: 4px solid #F58220;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: #212529;
}

/* ── IMAGES ── */
.cs-img-frame {
  overflow: hidden;
  position: relative;
  -ms-flex-item-align: start;
  align-self: start;
}
.cs-img-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
}
.cs-img-frame:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.cs-img-frame--tall { height: 520px; }
.cs-img-frame--med  { height: 400px; }

/* ── SYSTEM CARDS ── */
.cs-systems-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  background: #E5E5E5;
  border: 1px solid #E5E5E5;
}
.cs-system-card {
  background: #ffffff;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
.cs-system-card-img { height: 220px; overflow: hidden; }
.cs-system-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
}
.cs-system-card:hover .cs-system-card-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cs-system-card-body { padding: 24px; }
.cs-system-tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #F58220;
  display: block;
  margin-bottom: 6px;
}
.cs-system-name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #212529;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.cs-system-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.7;
  margin: 0;
}

/* ── BOARDWALK ── */
.cs-boardwalk-img-wrap { position: relative; margin-top: 32px; overflow: hidden; }
.cs-boardwalk-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
}
.cs-boardwalk-img-wrap:hover img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
.cs-boardwalk-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6);
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F58220;
}

/* ── GALLERY ── */
.cs-gallery-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6px;
}
.cs-gallery-item {
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: calc(33% - 6px);
}
.cs-gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
}
.cs-gallery-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cs-gallery-item--wide {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  min-width: calc(66% - 6px);
}
.cs-gallery-item--wide img { height: 260px; }

/* ── RESULTS ── */
.cs-results-list { list-style: none; margin-top: 24px; padding: 0; }
.cs-results-list li {
  padding: 14px 0;
  border-bottom: 1px solid #E5E5E5;
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #212529;
}
.cs-results-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #F58220;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── QUOTE ── */
.cs-quote-section {
  background: #212529;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cs-quote-section::before {
  content: open-quote;
  position: absolute;
  top: -40px;
  left: 5%;
  font-size: 300px;
  color: rgba(0,179,184,0.08);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}
.cs-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cs-quote-mark {
  width: 40px;
  height: 4px;
  background: #F58220;
  margin: 0 auto 32px;
}
.cs-quote-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.cs-quote-attr {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #00B3B8;
}

/* ── CTA ── */
.cs-cta-section {
  background: #F58220;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cs-cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: #00B3B8;
}
.cs-cta-section h2 {
  font-size: 2.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 16px;
}
.cs-cta-section p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 36px;
  font-weight: 600;
}
.cs-btn {
  display: inline-block;
  padding: 15px 36px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.cs-btn--dark {
  background: #212529;
  color: #ffffff;
  border: 2px solid #212529;
}
.cs-btn--dark:hover {
  background: #ffffff;
  color: #212529;
  border-color: #ffffff;
  text-decoration: none;
}
.cs-btn--outline {
  background: #ffffff;
  color: #F58220;
  border: 2px solid #ffffff;
  margin-left: 12px;
}
.cs-btn--outline:hover {
  background: #212529;
  color: #ffffff;
  border-color: #212529;
  text-decoration: none;
}

/* ── FADE IN ── */
.cs-fade-in {
  opacity: 0;
  -webkit-transform: translateY(24px);
  transform: translateY(24px);
  -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.cs-fade-in.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .cs-two-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 36px;
  }
  .cs-two-col > *,
  .cs-two-col--wide > *:first-child,
  .cs-two-col--wide > *:last-child,
  .cs-two-col--wide-rev > *:first-child,
  .cs-two-col--wide-rev > *:last-child {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }
  .cs-stats-inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cs-stat-item { width: 50%; }
  .cs-systems-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cs-gallery-item,
  .cs-gallery-item--wide {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 6px);
    flex: 1 1 calc(50% - 6px);
    min-width: calc(50% - 6px);
  }
  .cs-meta-cell { width: 100%; }
  .cs-meta-cell--full { width: 100%; }
  .cs-img-frame--tall,
  .cs-img-frame--med { height: 300px; }
  .cs-section { padding: 52px 0; }
  .cs-hero { height: 70vh; }
  .cs-btn--outline { margin-left: 0; margin-top: 12px; }
  .cs-hero h1 { font-size: 3rem; }
}

@media (max-width: 600px) {
  .cs-hero h1 { font-size: 2.2rem; line-height: 1.0; }
  .cs-hero h1 em { font-size: 2.2rem; }
  .cs-hero-badge { font-size: 9px; padding: 6px 12px; }
  .cs-hero-sub { font-size: 13px; }
  .cs-hero-content { padding: 0 20px 40px; }
}

/* ═══════════════════════════════════════════════
   SUNDEK CASE STUDY INDEX PAGE
   No CSS grid, no fr units, no CSS variables
   ═══════════════════════════════════════════════ */

.cs-index-wrapper { background: #212529; }

/* ── PAGE HEADER ── */
.cs-index-header {
    background: #212529;
    padding-top: 142px;
    padding-bottom: 60px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid #F58220;
}
.cs-index-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(-45deg, rgba(245,130,32,0.03) 0px, rgba(245,130,32,0.03) 1px, transparent 1px, transparent 40px);
}
.cs-index-header .container { position: relative; z-index: 1; }

.cs-index-eyebrow {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #F58220;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 14px;
}
.cs-index-eyebrow::before {
    content: '';
    width: 28px;
    height: 3px;
    background: #F58220;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
}
.cs-index-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.0;
    margin-bottom: 16px;
}
.cs-index-header h1 span { color: #F58220; }
.cs-index-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* ── FILTER BAR ── */
.cs-filter-bar {
    background: #F7F7F7;
    border-bottom: 1px solid #E5E5E5;
    padding: 16px 0;
}
.cs-filter-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cs-filter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #666666;
    margin-right: 12px;
}
.cs-filter-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 7px 16px;
    border: 1.5px solid #E5E5E5;
    background: #ffffff;
    color: #666666;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    border-radius: 0;
    margin-right: 8px;
    margin-bottom: 8px;
}
.cs-filter-btn:hover,
.cs-filter-btn.active {
    background: #F58220;
    border-color: #F58220;
    color: #ffffff;
}

/* ── INDEX SECTION ── */
.cs-index-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

/* ── CARD GRID — flexbox rows of 3 ── */
.cs-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #E5E5E5;
    border: 1px solid #E5E5E5;
}
.cs-card {
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.333% - 2px);
    flex: 0 0 calc(33.333% - 2px);
    width: calc(33.333% - 2px);
    -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-card:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 2;
    text-decoration: none;
}
.cs-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.cs-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
}
.cs-card:hover .cs-card-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.cs-card-img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
}
.cs-card-award {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #F58220;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cs-card-award i { margin-right: 5px; }
.cs-card-body {
    padding: 24px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 3px solid #F58220;
}
.cs-card-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #F58220;
    display: block;
    margin-bottom: 8px;
}
.cs-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: #212529;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.cs-card-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.cs-card-meta-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 16px;
    margin-bottom: 4px;
}
.cs-card-meta-item i {
    color: #F58220;
    font-size: 9px;
    margin-right: 5px;
}
.cs-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #666666;
    line-height: 1.7;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 18px;
}
.cs-card-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #F58220;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
    -webkit-transition: padding-left 0.2s;
    transition: padding-left 0.2s;
}
.cs-card-link i { margin-left: 8px; font-size: 9px; }
.cs-card:hover .cs-card-link { padding-left: 4px; }

/* ── PLACEHOLDER CARDS ── */
.cs-card-placeholder {
    background: #F7F7F7;
    border: 2px dashed #E5E5E5;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 380px;
    padding: 40px 24px;
    text-align: center;
    cursor: default;
}
.cs-card-placeholder:hover {
    -webkit-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.cs-placeholder-icon {
    width: 56px;
    height: 56px;
    border: 2px dashed #D0D0D0;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #CCCCCC;
    font-size: 20px;
}
.cs-placeholder-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #CCCCCC;
}

/* ── STATS STRIP ── */
.cs-index-stats {
    background: #212529;
    padding: 40px 0;
}
.cs-index-stats-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.cs-index-stat {
    text-align: center;
    padding: 0 40px;
}
.cs-index-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #F58220;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.cs-index-stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
}

/* ── INDEX CTA ── */
.cs-index-cta {
    background: #F58220;
    padding: 64px 0;
    text-align: center;
    position: relative;
}
.cs-index-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: #00B3B8;
}
.cs-index-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.cs-index-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.88);
    max-width: 480px;
    margin: 0 auto 28px;
    font-weight: 500;
    line-height: 1.7;
}
.cs-index-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    border-radius: 0;
}
.cs-index-btn-dark {
    background: #212529;
    color: #ffffff;
    border: 2px solid #212529;
}
.cs-index-btn-dark:hover {
    background: #ffffff;
    color: #212529;
    text-decoration: none;
}

/* ── INDEX RESPONSIVE ── */
@media (max-width: 991px) {
    .cs-card {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 2px);
        flex: 0 0 calc(50% - 2px);
        width: calc(50% - 2px);
    }
    .cs-index-header h1 { font-size: 2.2rem; }
    .cs-index-stat { padding: 0 20px; margin-bottom: 20px; }
}
@media (max-width: 600px) {
    .cs-card {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
    }
    .cs-index-header { padding-top: 118px; padding-bottom: 40px; }
    .cs-index-header h1 { font-size: 1.8rem; }
    .cs-card-placeholder { min-height: 200px; }
}