/* ============================================ */
/* GROWWSTACKS — GLOBAL CSS                     */
/* Shared design system for all pages           */
/* Contains: tokens, reset, nav, buttons,       */
/*   partners, ticker, stats, form, FAQ,        */
/*   footer, responsive, YouTube facades,       */
/*   accessibility fixes                        */
/* ============================================ */

/* ============================================ */
/* DESIGN TOKENS                                */
/* ============================================ */
:root {
  /* Brand Colors */
  --green-900: #0d3b1a;
  --green-800: #145a27;
  --green-700: #1a6e30;
  --green-600: #1f8a3c;
  --green-500: #22a447;
  --green-400: #4cbc6b;
  --green-100: #dcf5e3;
  --green-50: #f0faf3;

  /* Pastels & Accents */
  --peach: #ffe8d6;
  --peach-deep: #f4a261;
  --lavender: #e8dff5;
  --lavender-deep: #8b5cf6;
  --sky: #dbeafe;
  --sky-deep: #3b82f6;
  --mint: #d1fae5;
  --rose: #ffe4e6;
  --rose-deep: #f43f5e;
  --amber: #fef3c7;
  --amber-deep: #f59e0b;

  /* Neutrals */
  --dark: #0f1117;
  --dark-800: #1a1d27;
  --dark-700: #2a2d37;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Bricolage Grotesque', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-green: 0 4px 20px rgba(34,164,71,0.15);
  --shadow-card-hover: 0 8px 30px rgba(0,0,0,0.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ============================================ */
/* RESET & BASE                                 */
/* ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================ */
/* UTILITY CLASSES                              */
/* ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 24px; height: 2px;
  background: currentColor; display: inline-block;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 16px;
}
.section-desc {
  font-size: 18px; color: var(--gray-500); max-width: 640px; line-height: 1.7;
}

/* ============================================ */
/* BUTTONS                                      */
/* ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent;
  text-decoration: none; position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--green-700); color: var(--white);
  border-color: var(--green-700);
}
.btn-primary:hover {
  background: var(--green-800); border-color: var(--green-800);
  transform: translateY(-2px); box-shadow: var(--shadow-green);
}
.btn-accent {
  background: var(--amber-deep); color: var(--dark);
  border-color: var(--amber-deep);
}
.btn-accent:hover {
  background: #d97706; border-color: #d97706;
  transform: translateY(-2px); box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.btn-outline {
  background: transparent; color: var(--green-700);
  border-color: var(--green-700);
}
.btn-outline:hover {
  background: var(--green-700); color: var(--white);
}
.btn-white {
  background: var(--white); color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gray-100); transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn svg { width: 18px; height: 18px; }

/* Arrow animation */
.btn-arrow { transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }


/* ============================================ */
/* NAVIGATION                                   */
/* ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-left { display: flex; align-items: center; gap: 48px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 36px; }
.nav-logo-fallback {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  color: var(--green-700); letter-spacing: -0.5px;
}
.nav-logo-fallback span { color: var(--gray-400); font-weight: 400; font-size: 14px; margin-left: 4px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-600);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0;
  height: 2px; background: var(--green-600); transition: width 0.25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-size: 14px; font-weight: 600; color: var(--gray-600);
  display: flex; align-items: center; gap: 6px;
}
.nav-cta {
  padding: 10px 22px; font-size: 14px;
}
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: all 0.3s; }

/* ============================================ */
/* PARTNER BADGES                               */
/* ============================================ */
.partners {
  padding: 60px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.partners-inner { text-align: center; }
.partners-label { font-size: 13px; color: var(--gray-400); font-weight: 500; margin-bottom: 32px; letter-spacing: 1px; text-transform: uppercase; }
.partners-grid {
  display: flex; justify-content: center; align-items: stretch;
  gap: 20px; flex-wrap: wrap;
}
.partner-badge {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 20px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  transition: all 0.3s; min-width: 120px;
}
.partner-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--green-400); }
.partner-badge-img {
  width: 100px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--gray-400);
}
.partner-badge-text { font-size: 11px; font-weight: 700; color: var(--green-700); text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================ */
/* PLATFORM TICKER (Scrolling logos)            */
/* ============================================ */
.ticker { padding: 48px 0; background: var(--white); overflow: hidden; }
.ticker-label { text-align: center; font-size: 13px; color: var(--gray-400); font-weight: 500; margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase; }
.ticker-row { display: flex; overflow: hidden; position: relative; }
.ticker-row::before, .ticker-row::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.ticker-row::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.ticker-row::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }
.ticker-track {
  display: flex; gap: 32px; align-items: center;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-row-reverse .ticker-track {
  animation-direction: reverse;
}
.ticker-item {
  flex-shrink: 0; padding: 10px 20px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-full); font-size: 13px; font-weight: 600;
  color: var(--gray-600); display: flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.ticker-item:hover { background: var(--green-50); border-color: var(--green-400); color: var(--green-700); }
.ticker-logo { width: 20px; height: 20px; border-radius: 4px; object-fit: contain; flex-shrink: 0; }
.ticker-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================ */
/* ROI / STATS                                  */
/* ============================================ */
.stats {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  padding: 64px 0; color: var(--white);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: -16px; top: 10%;
  height: 80%; width: 1px; background: rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 800;
  line-height: 1;
}
.stat-suffix { font-size: 24px; font-weight: 600; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ============================================ */
/* CONSULTATION FORM                            */
/* ============================================ */
.consult {
  background: linear-gradient(150deg, var(--dark) 0%, #0d2818 50%, var(--dark) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.consult::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,164,71,0.08), transparent 70%);
}
.consult::after {
  content: ''; position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.06), transparent 70%);
}
.consult-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.consult-left h2 { font-size: 40px; font-weight: 800; margin-bottom: 16px; }
.consult-left h2 .highlight-amber { color: var(--amber-deep); }
.consult-left p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.consult-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.consult-benefits li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,0.8);
}
.consult-check {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(34,164,71,0.15); color: var(--green-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.consult-urgency {
  margin-top: 32px; padding: 16px 20px;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-md); font-size: 14px; color: var(--amber-deep);
  display: flex; align-items: center; gap: 10px;
}

/* Form card */
.form-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-xl); color: var(--dark);
}
.form-card h3 {
  font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 4px;
}
.form-card-sub { text-align: center; font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-body);
  transition: all 0.2s; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(34,164,71,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--green-700); color: var(--white);
  border: none; border-radius: var(--radius-sm); font-size: 16px;
  font-weight: 700; font-family: var(--font-display); cursor: pointer;
  transition: all 0.25s; margin-top: 8px; letter-spacing: -0.01em;
}
.form-submit:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.form-note { text-align: center; font-size: 12px; color: var(--gray-400); margin-top: 14px; }

/* Hidden fields */
.form-hidden { display: none; }

/* ============================================ */
/* FAQ (AEO OPTIMIZED)                          */
/* ============================================ */
.faq { background: var(--white); }
.faq .section-label { color: var(--green-600); }
.faq-inner { max-width: 800px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  padding: 20px 0; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 17px;
  color: var(--dark); background: none; border: none; width: 100%;
  text-align: left; line-height: 1.4;
}
.faq-q:hover { color: var(--green-700); }
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: all 0.3s;
  font-size: 14px; color: var(--gray-500);
}
.faq-item.active .faq-arrow { background: var(--green-100); color: var(--green-700); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 0 20px; font-size: 15px; color: var(--gray-500); line-height: 1.7; }
.faq-item.active .faq-a { max-height: 300px; }

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.5);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-400); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); margin-left: 16px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--white); }

/* MID CTA BANNER */
.mid-cta {
  padding: 48px 0; text-align: center;
  background: var(--green-50); border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
}
.mid-cta p { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 16px; }

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .wwd-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cases-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .consult-inner { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: 32px; }
  .wwd-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:not(:last-child)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .partners-grid { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}
/* CSS PART*/
.hero-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 380px;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Hero Card */
.hero-card {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 380px;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  z-index: 1;
}

/* Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

/* Images */
.carousel-img {
  position: absolute;
  inset: 0;

  width: 95%;
  height: 95%;

  object-fit: contain;
  background: #f8fafc;

  opacity: 0;
  transition: opacity 1s ease-in-out;

  z-index: 1; /* Behind badges */
}

/* Active image */
.carousel-img.active {
  opacity: 1;
}

/* Floating badges - ALWAYS ON TOP */
.hero-float {
  position: absolute;
  z-index: 10; /* Above images */
  pointer-events: none; /* Optional: click through */
}
.hero-float {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.4);

  box-shadow: 0 10px 25px rgba(0,0,0,0.1);

  border-radius: 14px;
}

.hero-float {
  animation: floaty 4s ease-in-out infinite;
}

.hero-float-2 {
  animation-delay: 1s;
}

.hero-float-3 {
  animation-delay: 2s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}






/* === BLOCK 2 (duplicate/override) === */

  .partners {
    width: 100%;
    padding: 60px 20px;
  }
  .partners-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .partners-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 36px;
  }
  .partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .partner-badge {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 170px;
    min-height: 120px;
    justify-content: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .partner-badge:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
  }
  .partner-badge-img {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner-badge-img img {
    max-height: 38px;
    max-width: 110px;
    object-fit: contain;
    display: block;
  }
  .partner-badge-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0d9488;
    text-align: center;
  }

/* ============================================ */
/* YOUTUBE LITE FACADE                          */
/* ============================================ */
.yt-facade {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--gray-100);
  overflow: hidden;
}
.yt-facade picture, .yt-facade img {
  display: block;
  width: 100%;
  height: 100%;
}
.yt-facade-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.yt-facade:hover .yt-facade-play { opacity: 1; }
.yt-facade:focus-visible { outline: 3px solid var(--green-600); outline-offset: 2px; }

/* ============================================ */
/* ACCESSIBILITY CONTRAST FIXES                 */
/* ============================================ */
.section-label { color: var(--gray-600); }
.partners-label { color: var(--gray-600); }
.ticker-label { color: var(--gray-600); }
.partner-badge-text { color: #0a6e5a; }
.case-result-label { color: var(--gray-600); }
.test-source { color: var(--gray-600); }
.test-role { color: var(--gray-500); }
.rc-stars { color: #b45309; }
.form-note { color: var(--gray-500); }
.footer-col h4 { color: rgba(255,255,255,0.5); }

/* Page accent — warm coral/peach for Voice AI */
:root {
  --cs-accent:#e8590c;--cs-accent-light:#f97316;--cs-accent-pale:#fff7ed;--cs-gradient:linear-gradient(135deg,#fff7ed 0%,#fed7aa 50%,#fde8d6 100%)}


/* Page accent color overrides */
.btn-accent { background: var(--cs-accent); color: var(--white); border-color: var(--cs-accent); }
.btn-accent:hover { background: var(--cs-accent-light); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(232,89,12,.25); }
.btn-outline { background: transparent; color: var(--cs-accent); border-color: var(--cs-accent); }
.btn-outline:hover { background: var(--cs-accent); color: var(--white); }
.nav-links a:hover { color: var(--cs-accent); }


/* HERO */
.cs-hero{padding:140px 0 60px;position:relative;overflow:hidden}
.cs-hero-bg{position:absolute;inset:0;background:var(--cs-gradient);z-index:0}
.cs-hero-bg::before{content:'';position:absolute;inset:0;background-image:radial-gradient(rgba(255,255,255,.5) 1px,transparent 1px);background-size:28px 28px;opacity:.5}
.cs-hero-bg-shape1{position:absolute;top:-100px;right:-100px;width:500px;height:500px;border-radius:50%;background:rgba(249,115,22,.08);filter:blur(80px)}
.cs-hero-bg-shape2{position:absolute;bottom:-80px;left:-120px;width:400px;height:400px;border-radius:50%;background:rgba(232,89,12,.05);filter:blur(60px)}
.cs-hero-inner{position:relative;z-index:2}
.cs-breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--gray-500);margin-bottom:24px}.cs-breadcrumb a{color:var(--cs-accent);font-weight:600}.cs-breadcrumb a:hover{text-decoration:underline}
.cs-hero-tags{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px}
.cs-tag{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;padding:5px 14px;border-radius:var(--radius-full);background:var(--white);color:var(--cs-accent);border:1px solid rgba(232,89,12,.15)}
.cs-hero h1{font-size:clamp(36px,4.5vw,52px);font-weight:800;color:var(--dark);margin-bottom:16px;max-width:800px}
.cs-hero-sub{font-size:20px;color:var(--gray-600);max-width:680px;line-height:1.7;margin-bottom:32px}
.cs-hero-logos{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:40px}
.cs-hero-logo{height:36px;padding:6px 14px;background:var(--white);border-radius:var(--radius-sm);border:1px solid var(--gray-200);display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--gray-600);box-shadow:var(--shadow-sm)}
.cs-hero-logo img{height:20px;width:auto}
.cs-hero-media{margin-top:48px;border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-xl);border:4px solid var(--white);background:var(--dark)}
.cs-hero-media iframe{width:100%;height:520px;border:none;display:block}

/* RESULTS STRIP */
.cs-results{padding:48px 0;background:var(--dark);color:var(--white)}
.cs-results-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;text-align:center}
.cs-result-item{position:relative}.cs-result-item:not(:last-child)::after{content:'';position:absolute;right:-16px;top:10%;height:80%;width:1px;background:rgba(255,255,255,.1)}
.cs-result-num{font-family:var(--font-display);font-size:44px;font-weight:800;color:#fed7aa}
.cs-result-label{font-size:14px;color:rgba(255,255,255,.6);margin-top:4px}

/* CONTENT */
.cs-content{padding:80px 0}
.cs-content-inner{display:grid;grid-template-columns:1fr 320px;gap:60px;align-items:start}
.cs-article h2{font-size:28px;font-weight:800;margin:48px 0 16px;color:var(--dark)}.cs-article h2:first-child{margin-top:0}
.cs-article h3{font-size:20px;font-weight:700;margin:32px 0 12px;color:var(--dark)}
.cs-article p{font-size:16px;color:var(--gray-600);line-height:1.8;margin-bottom:16px}
.cs-article ul,.cs-article ol{margin:12px 0 20px 24px;color:var(--gray-600)}
.cs-article li{margin-bottom:10px;font-size:15px;line-height:1.7}
.cs-article strong{color:var(--dark)}
.cs-img-block{margin:32px 0;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--gray-200);box-shadow:var(--shadow-sm)}
.cs-img-block img{width:100%;height:auto;display:block;border-radius:0}
.cs-img-caption{padding:12px 16px;background:var(--gray-50);font-size:13px;color:var(--gray-400);text-align:center;border-top:1px solid var(--gray-200)}
.cs-highlight{margin:32px 0;padding:24px 28px;border-radius:var(--radius-lg);border-left:4px solid var(--cs-accent);background:var(--cs-accent-pale)}
.cs-highlight p{color:var(--dark);font-weight:500;margin-bottom:0}

/* FEATURE GRID */
.cs-features{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:32px 0}
.cs-feature{padding:20px;background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius-md);transition:all .3s}
.cs-feature:hover{border-color:var(--cs-accent);box-shadow:var(--shadow-sm)}
.cs-feature-icon{font-size:24px;margin-bottom:8px}
.cs-feature h4{font-size:15px;font-weight:700;margin-bottom:4px}
.cs-feature p{font-size:13px;color:var(--gray-500);line-height:1.5;margin-bottom:0}

/* SIDEBAR */
.cs-sidebar{position:sticky;top:96px}
.cs-sidebar-card{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:28px;margin-bottom:20px}
.cs-sidebar-card h4{font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--gray-400);margin-bottom:16px}
.cs-sidebar-row{display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px solid var(--gray-200);font-size:14px}.cs-sidebar-row:last-child{border-bottom:none}
.cs-sidebar-label{color:var(--gray-400);font-weight:500}
.cs-sidebar-value{color:var(--dark);font-weight:700}
.cs-sidebar-tools{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px}
.cs-tool-tag{font-size:12px;font-weight:600;padding:5px 12px;border-radius:var(--radius-full);background:var(--white);border:1px solid var(--gray-200);color:var(--gray-600);display:flex;align-items:center;gap:6px}
.cs-tool-tag img{width:14px;height:14px}
.cs-sidebar-cta{background:var(--cs-accent);color:var(--white);border-radius:var(--radius-lg);padding:28px;text-align:center}
.cs-sidebar-cta h4{color:var(--white);text-transform:none;letter-spacing:0;font-size:18px;font-weight:700;margin-bottom:8px}
.cs-sidebar-cta p{font-size:14px;color:rgba(255,255,255,.7);margin-bottom:20px}
.cs-sidebar-cta .btn{width:100%;justify-content:center}

/* BOTTOM CTA */
.cs-bottom-cta{padding:80px 0;background:var(--cs-gradient);text-align:center;position:relative;overflow:hidden}
.cs-bottom-cta::before{content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;border-radius:50%;background:rgba(249,115,22,.08);filter:blur(80px)}
.cs-bottom-cta h2{font-size:36px;font-weight:800;margin-bottom:12px}
.cs-bottom-cta p{font-size:18px;color:var(--gray-600);margin-bottom:32px;max-width:520px;margin-left:auto;margin-right:auto}
.btn-group{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* MORE CASE STUDIES */
.cs-more{padding:64px 0;background:var(--white)}
.cs-more h2{text-align:center;font-size:28px;font-weight:800;margin-bottom:40px}
.cs-more-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.cs-more-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-lg);overflow:hidden;transition:all .35s;text-decoration:none;color:var(--dark)}
.cs-more-card:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,.12)}
.cs-more-card-img{height:140px;display:flex;align-items:center;justify-content:center;font-size:12px;color:rgba(255,255,255,.8);font-weight:600}
.cs-more-card-body{padding:20px}.cs-more-card-body h3{font-size:16px;font-weight:700;margin-bottom:4px;line-height:1.3}.cs-more-card-body p{font-size:13px;color:var(--gray-500)}
.cs-more-link{font-size:12px;font-weight:700;color:var(--cs-accent);margin-top:8px;display:inline-block}

/* FOOTER */
.footer{background:var(--dark);color:rgba(255,255,255,.5);padding:48px 0 32px}.footer-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px;font-size:13px}.footer a{color:rgba(255,255,255,.6);margin-left:16px}.footer a:hover{color:var(--green-400)}.footer-logo{font-family:var(--font-display);font-weight:800;font-size:20px;color:var(--white)}

/* RESPONSIVE */
@media(max-width:1024px){.nav-links{display:none}.nav-mobile-toggle{display:block}.cs-content-inner{grid-template-columns:1fr}.cs-sidebar{position:static}.cs-results-grid{grid-template-columns:repeat(2,1fr)}.cs-more-grid{grid-template-columns:1fr}.cs-features{grid-template-columns:1fr}}
@media(max-width:640px){.cs-hero{padding:110px 0 40px}.cs-hero h1{font-size:30px}.cs-hero-media iframe{height:260px}.cs-results-grid{grid-template-columns:1fr 1fr}.cs-result-item:not(:last-child)::after{display:none}}