/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* ---- HERO ---- */
.hero {
  min-height: calc(100vh - var(--header-h) - 36px);
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal-dark) 45%, #1a6b60 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
}
.hero-shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -100px; right: 0%;
  animation: pulse1 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(45,84,125,0.20) 0%, transparent 70%);
  bottom: -60px; left: 5%;
  animation: pulse2 10s ease-in-out infinite;
}
.hero-shape-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: 40%; right: 25%;
  animation: pulse3 7s ease-in-out infinite;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
@keyframes pulse1 { 0%,100%{transform:scale(1) translate(0,0);} 50%{transform:scale(1.1) translate(-20px, 15px);} }
@keyframes pulse2 { 0%,100%{transform:scale(1) translate(0,0);} 50%{transform:scale(1.05) translate(15px,-10px);} }
@keyframes pulse3 { 0%,100%{transform:scale(1) translate(0,0);} 50%{transform:scale(1.15) translate(-10px,20px);} }

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text { color: white; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.9);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: white;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.accent-text {
  color: rgba(255,255,255,0.92);
  position: relative;
}
.accent-text::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.5);
  opacity: 0.6;
  border-radius: 2px;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat { text-align: center; padding: 0 24px 0 0; }
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #a8e6df;
  font-family: var(--font-head);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); margin-right: 24px; }

.hero-illustration { position: relative; display: flex; align-items: center; justify-content: center; animation: fadeUp 0.7s 0.2s ease both; }
.hero-svg { width: 100%; max-width: 520px; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.25)); }

.hero-carousel {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.carousel-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.carousel-dot.active { width: 24px; background: var(--teal); border-radius: 4px; }

/* ---- SERVICES SNAPSHOT ---- */
.services-snapshot { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--navy));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.service-card h3 { margin-bottom: 10px; color: var(--black); }
.service-card p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.card-link { font-size: 0.85rem; font-weight: 600; color: var(--teal); transition: gap var(--transition); display: inline-flex; gap: 4px; }
.card-link:hover { gap: 8px; color: var(--navy); }

/* old differentiators light section — replaced by .differentiators-dark */

/* ---- CASE STUDIES ---- */
.case-study-section { background: white; }
.cs-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }

.cs-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.cs-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.cs-card--featured { border-color: var(--teal-dark); border-width: 2px; }

.cs-visual { overflow: hidden; background: var(--gray-light); }
.cs-illustration { width: 100%; display: block; }
.cs-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.cs-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.cs-content h3 { margin-bottom: 10px; }
.cs-content p { font-size: 0.9rem; margin-bottom: 16px; flex: 1; }
.cs-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.cs-highlights span {
  background: var(--navy-light);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ---- ACCELERATORS ---- */
.accelerators-section { background: var(--gray-light); }
.acc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.acc-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.acc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--teal); }
.acc-icon { font-size: 2rem; margin-bottom: 14px; }
.acc-card h4 { color: var(--black); margin-bottom: 8px; font-size: 0.95rem; }
.acc-card p { font-size: 0.85rem; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal-dark) 60%, var(--navy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-wave-top { position: absolute; top: 0; left: 0; right: 0; height: 60px; }
.cta-inner { position: relative; z-index: 1; }
.cta-text h2 { color: white; margin-bottom: 14px; }
.cta-text p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE HOME
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .acc-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }
  .hero { min-height: auto; padding: 60px 0 40px; }
  .diff-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 16px 0 0; }
  .hero-stat-divider { margin-right: 16px; }
  .stat-num { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .acc-grid { grid-template-columns: 1fr 1fr; }
  .diff-item { flex-direction: column; gap: 8px; }
  .diff-number { font-size: 2rem; }
}

@media (max-width: 400px) {
  .hero-actions { flex-direction: column; }
  .acc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME — HERO REAL IMAGE
   ============================================================ */
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.12);
}
.hero-real-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}
/* Subtle green tint overlay on the hero image to tie it into the brand */
.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,90,82,0.25) 0%, transparent 60%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

/* ---- DIFFERENTIATORS layout with image ---- */
.diff-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.diff-img-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 380px;
}

@media (max-width: 900px) {
  .diff-layout { grid-template-columns: 1fr; }
  .diff-img-col { display: none; }
}
@media (max-width: 800px) {
  .hero-real-img { max-height: 260px; }
}


/* ── HERO CAROUSEL ── */
.hero-carousel-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.12);
}
.hero-slide {
  display: none;
  position: relative;
}
.hero-slide.active { display: block; }
.hero-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(31,90,82,0.88) 0%, transparent 100%);
  padding: 24px 20px 16px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.slide-tag {
  display: inline-block;
  background: var(--teal);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.hero-slide-caption p {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}
.hero-carousel-wrap::after { display: none; } /* override old overlay */

/* ============================================================
   HERO SPLIT LAYOUT  (Screenshot_106 style)
   ============================================================ */
.hero {
  min-height: 0 !important;
  background: none !important;
  padding: 0 !important;
}
.hero-bg { display: none; }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header-h) - 36px);
}

/* LEFT — image panel */
.hero-image-side {
  position: relative;
  overflow: hidden;
  background: #0d2b26;
}
.hero-carousel-slides { width: 100%; height: 100%; }
.hero-slide { display: none; position: relative; height: 100%; }
.hero-slide.active { display: block; }
.hero-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(31,90,82,0.85) 0%, transparent 100%);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 20px 24px 16px;
  letter-spacing: 0.02em;
}

/* RIGHT — teal content panel */
.hero-content-side {
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
}
.hero-content-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31,90,82,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 460px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.hero-title-new {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: white;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-subtitle-new {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-cta-row { margin-bottom: 28px; }
.btn-hero-primary {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: white;
  border: 2px solid white;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: white;
  color: var(--teal-dark);
}
.hero-phone {
  margin-top: 8px;
}
.hero-phone a {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity var(--transition);
}
.hero-phone a:hover { opacity: 0.8; color: white; }

/* Carousel dots repositioned */
.hero-carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 25%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.45);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.carousel-dot.active { width: 24px; background: white; border-radius: 4px; }

/* ============================================================
   CAPABILITIES CARDS  (Screenshot_107/108 style)
   ============================================================ */
.capabilities-section { background: white; }

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cap-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  background: white;
}
.cap-card:hover {
  box-shadow: 0 8px 32px rgba(67,157,145,0.14);
  transform: translateY(-4px);
}

.cap-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);            /* matches the brown-red #96382e from screenshots */
  text-align: center;
  padding: 18px 16px 14px;
  letter-spacing: 0.01em;
  line-height: 1.25;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-card-img-wrap {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: var(--gray-light);
}
.cap-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cap-card:hover .cap-card-img { transform: scale(1.04); }

.cap-card-body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cap-card-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
  text-align: center;
}

.btn-learn-more {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 28px;
  background: var(--black);
  color: white;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background var(--transition);
}
.btn-learn-more:hover { background: var(--teal-dark); color: white; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-image-side { min-height: 50vw; }
  .hero-content-side { padding: 40px 28px; }
  .hero-title-new { font-size: 1.9rem; }
  .hero-carousel-dots { left: 50%; }
}

@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .hero-content-side { padding: 36px 20px; }
}

/* ============================================================
   DIFFERENTIATORS — DARK SECTION  (cube + 4 tiles)
   ============================================================ */
.differentiators-dark {
  background: var(--black);
  padding: 80px 0;
}
.diff-dark-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* LEFT — visual + headline */
.diff-dark-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.diff-dark-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.diff-cube-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 340px;
  transition: transform 0.6s ease;
}
.diff-dark-img-wrap:hover .diff-cube-img { transform: scale(1.03); }

.diff-dark-headline { color: white; }
.diff-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.diff-dark-headline h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: white;
  margin-bottom: 16px;
  font-family: var(--font-head);
}
.diff-dark-headline p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
}
.btn-diff-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
  transition: all var(--transition);
}
.btn-diff-cta:hover { color: white; border-color: white; gap: 10px; }

/* RIGHT — 4 tiles in 2×2 grid */
.diff-dark-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.diff-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.diff-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.diff-tile:hover {
  background: rgba(67,157,145,0.08);
  border-color: rgba(67,157,145,0.25);
}
.diff-tile:hover::before { transform: scaleX(1); }

.diff-tile-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  opacity: 0.85;
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.diff-tile h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1.35;
}
.diff-tile p {
  font-size: 0.82rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .diff-dark-inner { grid-template-columns: 1fr; gap: 40px; }
  .diff-dark-img-wrap { max-height: 260px; overflow: hidden; }
}
@media (max-width: 600px) {
  .diff-dark-tiles { grid-template-columns: 1fr; }
}

/* ── Homepage case study preview cards ── */
.cs-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cs-preview-card {
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1.5px solid var(--border);
  background: white;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.cs-preview-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.cs-preview-card--govt { border-top: 4px solid #2a6e2a; }
.cs-preview-card--bank { border-top: 4px solid var(--navy); }

.cs-preview-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.cs-preview-card--bank .cs-preview-tag { color: var(--navy); }
.cs-preview-card h3 { font-size: 1rem; margin-bottom: 10px; }
.cs-preview-card p { font-size: 0.87rem; line-height: 1.7; flex: 1; margin-bottom: 14px; }
.cs-preview-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.cs-preview-stats span {
  background: var(--gray-light);
  color: var(--gray-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
}
.cs-preview-footer { display: flex; align-items: center; gap: 12px; }
.btn-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  padding: 6px 12px;
  border: 1.5px solid var(--red);
  border-radius: 6px;
  transition: all var(--transition);
}
.btn-pdf-link:hover { background: var(--red); color: white; }

@media (max-width: 900px) { .cs-preview-grid { grid-template-columns: 1fr; } }
