/* ═══════════════════════════════════════════════════════════
   style.css  —  Dental Buyer Persona · Video Section
   Colors  : #FFFFFF | #CC5327 | #0A0A0A
   Fonts   : Space Grotesk | Montserrat
═══════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white:        #FFFFFF;
  --orange:       #CC5327;
  --black:        #0A0A0A;
  --orange-light: #E8622F;
  --orange-glow:  rgba(204, 83, 39, 0.25);
  --card-bg:      #111111;
  --border:       rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Space Grotesk', 'Montserrat', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

/* ─── Section Wrapper ──────────────────────────────────── */
.video-section {
  width: 100%;
  padding: 15px 24px 25px;
  background: var(--black);
  position: relative;
}

/* ─── Section Divider ──────────────────────────────────── */
.section-divider {
  width: 90%;
  max-width: 1090px;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(204, 83, 39, 0.35) 30%,
    rgba(204, 83, 39, 0.35) 70%,
    transparent 100%
  );
}

/* Subtle radial glow behind section */
.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(
    ellipse at center,
    rgba(204, 83, 39, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.section-inner {
  max-width: 1012px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ─── Section Title ────────────────────────────────────── */
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--white);
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 25px;
}

/* ─── Duration Badge ───────────────────────────────────── */
.badge-wrap {
  text-align: center;
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.99rem;
  letter-spacing: 0.4px;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 36px;
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.duration-badge:hover {
  background: var(--orange-light);
  transform: scale(1.04);
}

.duration-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--white);
  flex-shrink: 0;
}

/* ─── Video Card ───────────────────────────────────────── */
.video-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: -15px;
  box-shadow:
    0 0 0 1px rgba(204, 83, 39, 0.15),
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(204, 83, 39, 0.08);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(204, 83, 39, 0.35),
    0 30px 70px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(204, 83, 39, 0.15);
}

/* ─── YouTube Embed (16:9) ─────────────────────────────── */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* ═══════════════════════════════════════════════════════════
   CLIENTS GRID SECTION
═══════════════════════════════════════════════════════════ */
.clients-grid-section {
  width: 100%;
  padding: 10px 24px;
  background: var(--black);
  display: flex;
  justify-content: center;
}

.cg-container {
  max-width: 1200px;
  width: 100%;
}

.cg-top-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;

  text-align: center;
  flex-wrap: nowrap;
}

.cg-top-logo {
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

.cg-top-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.cg-top-highlight {
  text-shadow: -2px 0px 0px rgba(0, 255, 255, 0.6), 2px 0px 0px rgba(255, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .cg-top-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
  }
  .cg-top-title {
    font-size: 1.4rem;
  }
  .cg-top-logo {
    max-width: 200px;
  }
}

.cg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -40px;
}

.cg-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.cg-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.cg-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cg-card:hover img {
  opacity: 1;
}

.cg-card img[src*="logo ambala"] {
  transform: scale(1.4);
}

.cg-card:hover img[src*="logo ambala"] {
  transform: scale(1.45);
  opacity: 1;
}

.cg-card img[src*="petal smiles"] {
  transform: scale(1.25);
}

.cg-card:hover img[src*="petal smiles"] {
  transform: scale(1.3);
  opacity: 1;
}

.cg-card img[src*="apollo_dental"] {
  transform: scale(1.15);
}

.cg-card:hover img[src*="apollo_dental"] {
  transform: scale(1.2);
  opacity: 1;
}

.cg-card img[src*="ht_media"] {
  transform: scale(1.25);
}

.cg-card:hover img[src*="ht_media"] {
  transform: scale(1.3);
  opacity: 1;
}

.cg-placeholder-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
  text-align: center;
  user-select: none;
  transition: color 0.3s ease;
}

.cg-card:hover .cg-placeholder-text {
  color: var(--orange);
}



/* Cut corners using clip-path to match image style */
.clip-top-right {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}
.clip-bottom-left {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}
.clip-top-left {
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
}
.clip-bottom-right {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.cg-header-cell {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.cg-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #FFF;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cg-pill {
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 4px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.cg-text-cell {
  grid-column: span 1;
  display: flex;
  align-items: center;
  padding: 16px 24px 16px 0;
}

.cg-text-cell p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #e6e6e6;
  line-height: 1.6;
}

.cg-action-cell {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.cg-button {
  background: var(--orange);
  color: #FFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cg-button:hover {
  background: #b54a23;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(212, 90, 46, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   DENTIST REVIEWS SECTION
═══════════════════════════════════════════════════════════ */
.dentist-reviews-section {
  width: 100%;
  padding: 30px 24px;
  background: var(--black);
  display: flex;
  justify-content: center;
}

.dr-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dr-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.5px;
}

.dr-highlight {
  background: #FFE8D6;
  color: #D45A2E;
  padding: 2px 16px;
  border-radius: 4px;
  display: inline-block;
}

.dr-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #CCC;
  margin-bottom: 25px;
  text-align: center;
}

.dr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}

.dr-centered-row {
  display: flex;
  justify-content: center;
  width: 100%;
}

.dr-image-card {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.dr-banner-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  padding: 0 20px;
}

.dr-banner-text {
  background: #0f0504; /* Matches review card's warm dark background */
  border: 1.5px solid #d45a2e; /* Warm orange border matching the brand */
  border-radius: 99px; /* Fully rounded pill/badge shape like image 2 */
  padding: 16px 40px;
  color: #d45a2e; /* Warm orange text */
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  max-width: 850px;
  width: auto;
  box-shadow: 0 4px 20px rgba(212, 90, 46, 0.15);
  letter-spacing: 0.5px;
}


/* ═══════════════════════════════════════════════════════════
   REVIEWS SECTION (Double Marquee)
═══════════════════════════════════════════════════════════ */
.reviews-section {
  width: 100%;
  padding: 80px 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.reviews-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-section .section-title {
  text-align: center;
  margin-bottom: 10px;
  padding: 0 20px;
}

.reviews-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px;
}

.review-badge {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 12px;
  gap: 12px;
}

.google-badge {
  border-color: rgba(66, 133, 244, 0.3);
}

.badge-column-layout {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 24px;
}

.rb-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}

.rb-icon-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rb-brand {
  color: #FFF;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.rb-brand-sub {
  color: #AAA;
  font-weight: 500;
  font-size: 1.25rem;
  margin-left: 2px;
}

.rb-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rb-score {
  color: #FFF;
  font-weight: 800;
  font-size: 1.2rem;
}

.rb-count {
  color: #888;
  font-size: 0.9rem;
}

.clutch-badge {
  border-color: rgba(212, 90, 46, 0.3);
}

.rb-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.clutch-icon {
  background: #D45A2E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 800;
  font-size: 14px;
}

.rb-content {
  display: flex;
  flex-direction: column;
}

.rb-stars {
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.rb-text {
  font-family: 'Inter', sans-serif;
  color: #E0E0E0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Marquee Logic */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Fade out edges */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  margin-bottom: 20px;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-left {
  animation: scrollLeft 30s linear infinite;
}

.marquee-right {
  animation: scrollRight 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 20px;
  padding-right: 20px; /* Space between sets */
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Review Card Styling */
.review-card {
  width: 380px;
  background: #0f0504; /* Dark reddish-black from the 2nd image */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.review-card:hover {
  border-color: rgba(212, 90, 46, 0.3);
  background: #140806;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(212, 90, 46, 0.15);
}

.rc-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.rc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #222;
  flex-shrink: 0;
}

.rc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: #FFF;
  font-size: 1.1rem;
  margin: 0 0 4px 0;
}

.rc-info p {
  font-family: 'Montserrat', sans-serif;
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}

.rc-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}

.rc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rc-stars {
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rc-stars span {
  font-family: 'Inter', sans-serif;
  color: #AAA;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.rc-text {
  font-family: 'Inter', sans-serif;
  color: #CCC;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   OUR PROCESS SECTION
═══════════════════════════════════════════════════════════ */
.process-section {
  width: 100%;
  padding: 80px 24px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-container {
  max-width: 1100px;
  width: 100%;
}

.process-title {
  text-align: center;
  margin-bottom: -50px;
}

.accent-text {
  color: #D45A2E;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: -70px;
  padding: 0px 0;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FFF;
  transform: translateY(-50%); /* Center exactly on 50% */
  z-index: 1;
}

.moving-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  background: #D45A2E;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 15px rgba(212, 90, 46, 0.8), 0 0 5px rgba(255, 255, 255, 0.5);
  animation: moveDot 8s linear infinite;
  z-index: 4;
}

@keyframes moveDot {
  0% { left: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.timeline-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px; /* Base width */
}

.timeline-dot {
  width: 22px;
  height: 22px;
  background: #D45A2E;
  border-radius: 50%;
  margin: 0; /* Remove margin to stay perfectly centered */
  position: relative;
  z-index: 3;
}

.timeline-top, .timeline-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 250px; /* Force exactly equal height for perfect centering */
}

/* Connectors */
.timeline-item.bottom-heavy .timeline-top {
  justify-content: flex-end;
  padding-bottom: 15px;
}

.timeline-item.bottom-heavy .timeline-bottom {
  justify-content: flex-start;
  padding-top: 15px;
}

.timeline-item.top-heavy .timeline-top {
  justify-content: flex-end;
  padding-bottom: 15px;
}

.timeline-item.top-heavy .timeline-bottom {
  justify-content: flex-start;
  padding-top: 15px;
}

/* Elements */
.stage-pill {
  background: #D45A2E;
  color: #FFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(212, 90, 46, 0.4);
}

.step-card {
  background: #FFF;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  width: 220px;
  box-shadow: 0 0 20px rgba(212, 90, 46, 0.15), 0 0 0 1px rgba(212, 90, 46, 0.5);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(212, 90, 46, 0.3), 0 0 0 1px rgba(212, 90, 46, 0.8);
}

.step-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: #111;
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.step-card h4 {
  font-family: 'Montserrat', sans-serif;
  color: #D45A2E;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-card p {
  color: #444;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
}

.tooltip-box {
  background: #111;
  border: 1px solid rgba(212, 90, 46, 0.5);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  width: 240px;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 0 0 30px rgba(212, 90, 46, 0.2);
}

.tooltip-box::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #111;
  border-right: 1px solid rgba(212, 90, 46, 0.5);
  border-bottom: 1px solid rgba(212, 90, 46, 0.5);
}

.tooltip-box p {
  color: #CCC;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.tooltip-box .highlight {
  color: #D45A2E;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   CLIENT IMAGES SECTION
═══════════════════════════════════════════════════════════ */
.client-images-section {
  width: 100%;
  padding: 80px 24px;
  background: var(--bg-main, #0A0A0A);
}

.client-images-container {
  max-width: 1200px;
  margin: 0 auto;
}

.client-images-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange, #CC5327);
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.client-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media screen and (min-width: 769px) {
  .client-images-grid .client-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 16px);
    margin: 0 auto;
  }
}

.client-card {
  background: var(--card-bg, #111111);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.client-img-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.client-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.client-card:hover .client-img-wrapper img {
  transform: scale(1.03);
}

.client-info {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.client-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white, #FFFFFF);
  margin-bottom: 4px;
}

.client-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange, #CC5327);
  margin-bottom: 12px;
}

.client-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #A0A0A0;
  line-height: 1.5;
  margin-top: 16px;
  text-align: left;
}

.client-desc p {
  margin-bottom: 12px;
}

.client-desc p:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media screen and (max-width: 992px) {
  .client-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .client-images-section {
    padding: 60px 16px;
  }
  .client-images-title {
    font-size: 2rem;
  }
  .client-images-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRY RECOGNITION SECTION
═══════════════════════════════════════════════════════════ */
.recognition-section.new-light-theme {
  width: 100%;
  padding: 20px 24px;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.recognition-container.two-column-layout {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.rec-left {
  flex: 1;
  max-width: 550px;
}

.rec-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 30px;
  text-transform: uppercase;
  white-space: nowrap;
}

.rec-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.rec-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 10px 28px;
  border-radius: 30px;
  background: #1a1a1a;
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rec-pill.active {
  background: #D45A2E;
  color: #FFF;
}

.rec-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.1;
  margin-bottom: 20px;
}

.rec-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #AAA;
  line-height: 1.6;
  margin-bottom: 50px;
}

.rec-arrows {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rec-arrow-btn {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 10px;
  transition: color 0.3s ease;
}

.rec-arrow-btn:hover {
  color: #D45A2E;
}

.rec-arrow-line {
  width: 60px;
  height: 2px;
  background: #D45A2E;
}

.rec-right {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.card-stack {
  position: relative;
  width: 380px;
  height: 480px;
}

.stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transition: all 1s linear;
  cursor: grab;
  transform-origin: center right;
  user-select: none;
}

.stack-card:active {
  cursor: grabbing;
}

.stack-card.active-card {
  z-index: 3;
  transform: translateX(0) scale(1);
  opacity: 1;
}

.stack-card.next-card {
  z-index: 2;
  transform: translateX(40px) scale(0.9);
  opacity: 0.7;
}

.stack-card.third-card {
  z-index: 1;
  transform: translateX(80px) scale(0.8);
  opacity: 0.4;
}

.stack-card.fourth-card {
  z-index: 0;
  transform: translateX(120px) scale(0.7);
  opacity: 0.15;
}

.stack-card.fifth-card {
  z-index: -1;
  transform: translateX(160px) scale(0.6);
  opacity: 0.05;
}

.stack-card.hidden-card {
  z-index: 4;
  transform: translateX(-150px) rotateY(-20deg);
  opacity: 0;
  pointer-events: none;
}

.sc-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
}

.sc-logo {
  margin-bottom: 30px;
}

.clutch-hex {
  width: 160px;
  height: 160px;
  background: #FFF;
  border: 4px solid #4B1E96;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.clutch-hex::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 2px solid #4B1E96;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.clutch-hex::after {
  content: '';
  position: absolute;
  top: 50%; left: -2px; right: -2px; height: 40px;
  background: #2D3A4B;
  transform: translateY(-50%);
  z-index: 1;
}

.clutch-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #FFF;
  z-index: 2;
  letter-spacing: 1px;
}

.sc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.sc-subtitle {
  font-family: 'Inter', sans-serif;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.4;
}

.google-partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gpb-top {
  padding: 20px;
  background: #1A1A1A;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.gpb-svg {
  width: 40px;
  height: 40px;
}

.gpb-text {
  font-family: 'Inter', sans-serif;
  color: #AAA;
  font-size: 1.1rem;
  font-weight: 500;
}

.gpb-bottom {
  background: #333;
  color: #FFF;
  width: 100%;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.sc-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #AAA;
  line-height: 1.6;
}

.sc-desc strong {
  color: #FFF;
}

.meta-partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #333;
  border-radius: 8px;
  width: 230px;
}

.mpb-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 20px 10px;
}

.meta-svg {
  width: 42px;
  height: 42px;
}

.mpb-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #FFF;
}

.mpb-bottom {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFF;
  padding: 0 20px 24px;
}

.hubspot-partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
}

.hpb-hexagon {
  width: 180px;
  height: 180px;
  background: #36536C;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hpb-hexagon::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px; right: 8px; bottom: 8px;
  background: #FFF;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  z-index: 1;
}

.hpb-top {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: -30px;
  z-index: 2;
}

.hpb-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  color: #36536C;
  font-size: 1.4rem;
}

.hs-logo-svg {
  width: 20px;
  height: 20px;
}

.hpb-middle {
  background: #FF5C35;
  width: 200px;
  padding: 10px 0;
  text-align: center;
  color: #FFF;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hpb-star {
  font-size: 1.2rem;
}

.hpb-bottom {
  text-align: center;
  color: #36536C;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.5px;
  z-index: 2;
  margin-top: 40px;
}

.startup-india-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 250px;
  height: 140px;
}

.sib-globe {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: inset -6px -6px 12px rgba(0,0,0,0.15), 0 4px 8px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.sib-saffron {
  background: #FF9933;
  flex: 1;
}

.sib-white {
  background: #FFFFFF;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sib-green {
  background: #138808;
  flex: 1;
}

.sib-chakra {
  width: 20px;
  height: 20px;
  position: absolute;
}

.sib-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sib-line1 {
  font-family: 'Inter', sans-serif;
  color: #3BB1E4; /* blue text on right, wait original image has orange 'START', blue 'UP'? The image shows 'START' in orange and 'UP' in blue. I'll just make it all orange for simplicity or use two colors */
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.sib-line1::before {
  content: 'START';
  color: #F8A51C;
}
.sib-line1::after {
  content: 'UP';
  color: #32B3E8;
}

/* Clear the original text in sib-line1 because I'm using pseudo elements */
.sib-line1 { font-size: 0; }
.sib-line1::before, .sib-line1::after { font-size: 2.2rem; }

.sib-line2 {
  font-family: 'Inter', sans-serif;
  color: #0F783B;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -1px;
}

.sib-line3 {
  font-family: 'Inter', sans-serif;
  color: #F8A51C;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 4px;
}

.ecommerce-forum-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 300px;
  height: 160px;
  transform: scale(0.85); /* Scale down to match other logos perfectly */
  transform-origin: center;
}

.efb-left {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.efb-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #A8247B 0%, #153787 50%, #D84177 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.efb-basket {
  width: 64px;
  height: 64px;
  top: 0;
  left: 20px;
  z-index: 3;
  background: linear-gradient(135deg, #D84177 0%, #A8247B 100%);
}
.efb-basket svg { width: 32px; height: 32px; }

.efb-truck {
  width: 80px;
  height: 80px;
  top: 35px;
  left: 45px;
  z-index: 2;
  background: linear-gradient(135deg, #D84177 0%, #153787 60%, #4B1E96 100%);
}
.efb-truck svg { width: 42px; height: 42px; }

.efb-tag {
  width: 54px;
  height: 54px;
  bottom: 0;
  left: 0;
  z-index: 4;
  background: linear-gradient(135deg, #7C218B 0%, #D84177 100%);
}
.efb-tag svg { width: 26px; height: 26px; }

.efb-dot {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #A8247B, #D84177);
}

.efb-dot1 {
  width: 22px;
  height: 22px;
  top: 40px;
  left: -5px;
}

.efb-dot2 {
  width: 14px;
  height: 14px;
  top: 75px;
  left: 8px;
}

.efb-right {
  display: flex;
  flex-direction: column;
}

.efb-line1, .efb-line2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFF;
  line-height: 0.85;
  letter-spacing: -0.5px;
}

.efb-line3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFF;
  line-height: 0.85;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.efb-year {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  font-size: 1rem;
}

.efb-bottom {
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #AAA;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   DISCOVERY SECTION (BENTO GRID)
═══════════════════════════════════════════════════════════ */
.discovery-section {
  width: 100%;
  padding: 20px 24px;
  background: var(--black);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discovery-container {
  max-width: 1012px;
  width: 100%;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 18px;
}

.bento-card {
  background: linear-gradient(145deg, rgba(204, 83, 39, 0.08) 0%, rgba(20, 20, 20, 0.8) 40%, #111 100%);
  border: 1px solid rgba(204, 83, 39, 0.15);
  border-radius: 20px;
  padding: 20px 30px 20px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 83, 39, 0.4);
}

.card-tall {
  grid-row: span 2;
}

.card-wide {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(204, 83, 39, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bento-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
}

.bento-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.bento-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  color: #CCC;
  font-size: 0.95rem;
  line-height: 1.5;
}

.bento-list strong {
  color: var(--white);
  font-weight: 600;
}

.success-card {
  background: linear-gradient(145deg, #151515 0%, #111 100%);
  border: 1px solid rgba(251, 155, 122, 0.3);
}

.success-icon {
  background: #25120a;
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.check-list {
  gap: 24px;
}

.check-list li {
  font-size: 1.05rem;
  color: #E0E0E0;
  align-items: center;
}

.highlight-badge {
  background: #FFE8D6;
  color: #D45A2E;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  margin: 0 4px;
}

.num {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  background: linear-gradient(145deg, #151515 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.33);
}

.why-item {
  background: #0a0a0a;
  padding: 24px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-item:hover {
  transform: scale(1.05);
  border-color: #BE5129;
  box-shadow: 0 0 20px rgba(190, 81, 41, 0.4);
  z-index: 2;
  position: relative;
}

.why-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  color: #BE5129;
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.why-item p {
  font-family: 'Montserrat', sans-serif;
  color: #999;
  font-size: 0.85rem;
  margin: 0;
}

.solid-card {
  background: #0A0A0A;
  border: 1px solid rgba(255, 255, 255, 0.33);
}

.bento-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: -16px;
  margin-bottom: 20px;
}

.solid-check-list {
  gap: 16px;
  margin-bottom: 30px;
}

.solid-check-list li {
  font-size: 1rem;
  color: #E0E0E0;
}

.solid-check-list svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0;
}

.solid-check-list polyline {
  stroke: #371910;
}

.bento-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #B24622;
  color: #FFF;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  margin-top: auto;
}

.bento-btn:hover {
  background: #D85C2F;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   LEGACY SECTION
═══════════════════════════════════════════════════════════ */
.legacy-section {
  width: 100%;
  padding: 20px 24px;
  background: var(--black);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.legacy-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 30px;
  align-items: stretch;
}

.legacy-content {
  flex: 0 1 auto;
  background:#000000;
  border-radius: 20px;
  box-shadow: 0px 0px 8px;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.legacy-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.legacy-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 500;
}

.legacy-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.legacy-btn {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #B24622 0%, #D85C2F 100%);
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--white);
  gap: 16px;
  width: fit-content;
  min-width: 280px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.legacy-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.most-popular-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #33221C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #DDD;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
}

.btn-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

.btn-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.legacy-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #CCC;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item:hover {
  color: #D45A2E;
}

.contact-item:hover svg {
  stroke: #D45A2E;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  stroke: #888;
  flex-shrink: 0;
  transition: stroke 0.3s ease;
}

.legacy-image-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.legacy-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.legacy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.legacy-team-badge {
  background: #2A1914;
  border: 1px solid rgba(204, 83, 39, 0.3);
  color: #DDD;
  font-family: 'Space Grotesk', sans-serif;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
}

.legacy-footer-banner {
  background: linear-gradient(90deg, #381A10 0%, #22100A 100%);
  border: 1px solid rgba(204, 83, 39, 0.4);
  border-radius: 12px;
  padding: 16px 30px;
  max-width: 1012px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legacy-footer-banner p {
  font-family: 'Space Grotesk', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--orange);
  margin: 0;
  text-align: center;
  flex: 1;
}

.star-icon {
  color: #999;
  font-size: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   BY THE NUMBERS STATS SECTION
   ═══════════════════════════════════════════════════════════ */
.stats-section {
  width: 100%;
  padding: 20px 24px;
  background: radial-gradient(ellipse at center, #1a0800 0%, #0a0a0a 70%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(204, 83, 39, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stats-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.stats-heading-accent {
  background: linear-gradient(135deg, #ff7a00, #cc5327, #ff4500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-subheading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  position: relative;
  background: #0f0f0f;
  border: 1px solid rgba(204, 83, 39, 0.35);
  border-radius: 20px;
  padding: 40px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(204, 83, 39, 0.08), inset 0 0 40px rgba(204, 83, 39, 0.04);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(204, 83, 39, 0.7);
  box-shadow: 0 0 40px rgba(204, 83, 39, 0.25), inset 0 0 60px rgba(204, 83, 39, 0.08);
}

.stat-glow {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(204, 83, 39, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ff7a00 0%, #cc5327 50%, #ff4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.stat-suffix {
  font-size: 0.75em;
  font-weight: 800;
}

.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.4;
}

/* ─── Tablet (≤ 900px) ────────────────────────────────── */
@media (max-width: 900px) {
  .stats-section {
    padding: 60px 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stats-subheading {
    margin-bottom: 40px;
  }
}

/* ─── Mobile (≤ 520px) ───────────────────────────────── */
@media (max-width: 520px) {
  .stats-section {
    padding: 50px 16px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .stat-card {
    padding: 28px 16px 24px;
    border-radius: 16px;
  }
  .stats-heading {
    font-size: 1.9rem;
  }
  .stats-subheading {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .stat-label {
    font-size: 0.82rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   FEATURED IN THIS PLATFORM SECTION
   ═══════════════════════════════════════════════════════════ */
.featured-section {
  width: 100%;
  padding: 20px 24px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.featured-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

.featured-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.featured-divider-line {
  width: 60px;
  height: 3px;
  background: #cc5327; /* Accent red/orange color matching the page theme */
  margin: 0 auto 35px auto;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.featured-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.featured-logo-circle {
  width: 130px;
  height: 130px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  overflow: hidden;
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-logo-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(26, 115, 232, 0.25);
}

.featured-logo-circle img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* Placeholders for logos not sent yet */
.featured-placeholderET {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  background: #e61c24; /* Red color matching Economic Times logo */
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-placeholderText {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.featured-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #CC5327;
  margin-bottom: 10px;
}

.featured-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
  max-width: 280px;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

/* ─── Tablet (≤ 900px) ─────────────────────────────────── */
@media (max-width: 900px) {
  .featured-section {
    padding: 40px 16px;
  }
  .featured-title {
    font-size: 1.8rem;
  }
  .featured-divider-line {
    margin-bottom: 35px;
  }
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .featured-logo-circle {
    width: 110px;
    height: 110px;
    margin-bottom: 15px;
  }
  .featured-placeholderET {
    font-size: 1.8rem;
  }
  .featured-placeholderText {
    font-size: 0.8rem;
  }
  .featured-item p {
    font-size: 0.85rem;
  }

  .video-section {
    padding: 30px 24px 40px;
  }

  .video-section::before {
    width: 100%;
    height: 400px;
  }

  .section-inner {
    max-width: 100%;
    padding: 0 8px;
  }

  .clients-grid-section {
    padding: 60px 20px;
  }
  .cg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cg-header-cell {
    grid-column: span 2;
  }
  .cg-text-cell {
    grid-column: span 2;
    padding: 24px 0;
  }

  .dentist-reviews-section {
    padding: 60px 20px;
  }
  .dr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dr-image-card {
    max-width: 100%;
  }

  .section-title {
    font-size: clamp(1.4rem, 4vw, 2rem);
    text-align: center;
    white-space: normal;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }

  .badge-wrap {
    text-align: center;
  }

  .duration-badge {
    font-size: 0.9rem;
    padding: 8px 22px;
    margin-bottom: 24px;
  }

  .video-card {
    border-radius: 12px;
  }

  .legacy-section {
    padding: 40px 30px;
  }

  .legacy-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .legacy-content {
    width: 100%;
    padding: 32px;
  }

  .legacy-image-wrapper {
    width: 100%;
  }

  .legacy-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .legacy-btn {
    width: 100%;
  }

  .process-section {
    padding: 60px 24px;
  }
  
  .reviews-section {
    padding: 60px 0;
  }
  
  .review-card {
    width: 320px;
    padding: 20px;
  }
  
  .rc-text {
    font-size: 0.85rem;
  }

  .timeline-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 20px 10px;
  }

  .timeline-line {
    width: 3px;
    height: 100%;
    left: 20px;
    top: 0;
    transform: none;
  }

  .timeline-item {
    width: 100%;
    align-items: flex-start;
    padding-left: 40px;
    margin-bottom: 50px;
  }

  .timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(0.5px);
    margin: 0;
  }

  .timeline-top, .timeline-bottom {
    height: auto;
    min-height: auto;
    width: 100%;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0 !important;
  }

  .timeline-item.bottom-heavy {
    flex-direction: column;
  }
  
  .timeline-item.top-heavy {
    flex-direction: column-reverse;
  }

  .stage-pill {
    margin-bottom: 16px;
    margin-top: 16px;
  }

  .step-card {
    width: 100%;
    max-width: 400px;
    text-align: left;
  }

  .tooltip-box {
    width: 100%;
    max-width: 400px;
    text-align: left;
  }
  
  .tooltip-box::after {
    display: none;
  }

  .recognition-section {
    padding: 60px 24px;
  }

  .recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .card-tall, .card-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-card {
    padding: 32px;
  }

  .bento-title {
    font-size: 1.4rem;
  }
  
  .why-choose-grid {
    gap: 16px;
  }

  .recognition-container.two-column-layout {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .rec-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .rec-arrows {
    justify-content: center;
  }
  .rec-right {
    width: 100%;
    height: 420px;
    margin-bottom: -30px;
  }
  .card-stack {
    width: 320px;
    height: 400px;
  }
}

/* ─── Mobile (≤ 520px) ─────────────────────────────────── */
@media (max-width: 520px) {
  .featured-section {
    padding: 30px 12px;
  }
  .featured-title {
    font-size: 1.5rem;
  }
  .featured-divider-line {
    margin-bottom: 25px;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 25px 0;
  }
  .featured-logo-circle {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  .featured-placeholderET {
    font-size: 1.6rem;
  }
  .featured-placeholderText {
    font-size: 0.75rem;
  }
  .featured-item h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  .featured-item p {
    font-size: 0.8rem;
    max-width: 100%;
  }

  .video-section {
    padding: 20px 14px 25px;
  }

  .section-inner {
    padding: 0 2px;
  }

  .section-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    text-align: center;
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin-bottom: 7px;
    white-space: normal; /* override tablet nowrap */
  }

  .clients-grid-section {
    padding: 40px 16px;
  }
  .cg-grid {
    grid-template-columns: 1fr;
  }
  .cg-card {
    aspect-ratio: 16 / 9;
    padding: 12px;
  }
  .cg-header-cell, .cg-text-cell {
    grid-column: span 1;
  }
  .cg-empty {
    display: none;
  }
  .cg-title {
    font-size: 2.5rem;
  }

  .dentist-reviews-section {
    padding: 30px 16px;
  }
  .dr-title {
    font-size: 1.8rem;
  }
  .dr-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .dr-grid {
    grid-template-columns: 1fr;
  }
  .dr-banner-container {
    margin-top: 30px;
  }
  .dr-banner-text {
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 24px;
  }


  .badge-wrap {
    text-align: center;
  }

  .duration-badge {
    font-size: 0.88rem;
    padding: 9px 22px;
    margin-bottom: 28px;
    border-radius: 50px;
  }

  .video-card {
    border-radius: 10px;
    box-shadow:
      0 0 0 1px rgba(204, 83, 39, 0.2),
      0 12px 30px rgba(0, 0, 0, 0.8),
      0 0 20px rgba(204, 83, 39, 0.1);
  }

  .video-card:hover {
    transform: none;
  }

  .legacy-section {
    padding: 30px 16px;
  }

  .legacy-container {
    gap: 20px;
  }

  .legacy-content {
    padding: 24px 16px;
  }

  .legacy-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .legacy-buttons {
    flex-direction: column;
    gap: 20px;
  }
  
  .legacy-subtitle{
    font-size: 1.1rem;
  }

  .recognition-section.new-light-theme {
    padding: 50px 16px;
  }
  .rec-heading {
    font-size: 2rem;
    white-space: normal;
  }
  .rec-title {
    font-size: 2.5rem;
  }
  .card-stack {
    width: 280px;
    height: 360px;
  }
  .sc-content {
    padding: 24px;
  }
  .sc-title {
    font-size: 1.5rem;
  }
    font-size: 20px;

  }
  .legacy-btn {
    padding: 12px;
    width: 100%;
  }

  .btn-title {
    font-size: 0.9rem;
  }

  .btn-sub {
    font-size: 0.75rem;
  }

  .btn-icon {
    width: 36px;
    height: 36px;
  }

  .btn-icon svg {
    width: 18px;
    height: 18px;
  }

  .contact-item {
    font-size: 0.95rem;
  }

  .mobile-hide {
    display: none !important;
  }

  .legacy-footer-banner {
    padding: 16px;
    margin-top: -15px;
  }

  .legacy-footer-banner p {
    font-size: 1rem;
  }

  .recognition-section {
    padding: 40px 16px;
  }

  .process-section {
    padding: 30px 16px;
  }

  .reviews-section {
    padding: 25px 0;
  }
  
  .review-badge {
    padding: 8px 16px;
  }
  
  .rb-stars {
    font-size: 0.75rem;
  }
  
  .rb-text {
    font-size: 0.8rem;
  }
  
  .review-card {
    width: 350px;
    padding: 16px;
  }
  
  .rc-info h4 {
    font-size: 1rem;
  }
  
  .marquee-wrapper {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }

  .timeline-container {
    padding-left: 0;
  }

  .timeline-line {
    left: 10px;
  }

  .timeline-dot {
    left: 0;
  }

  .timeline-item {
    padding-left: 30px;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }

  .recognition-card {
    padding: 20px;
    gap: 20px;
  }

  .discovery-section {
    padding: 40px 14px;
  }

  .bento-card {
    padding: 20px;
    margin-top: -12px;
  }

  .bento-title {
    font-size: 1.25rem;
    margin-bottom: 7px;
  }
  
  .bento-subtitle {
    font-size: 0.88rem;
    text-align: center;
    margin-top: -15px;

  }

  .solid-check-list li, .check-list li {
    font-size: 0.95rem;
    margin-bottom: -7px;
  }

  .success-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .bento-btn {
    font-size: 1rem;
    padding: 12px 16px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-item {
    padding: 12px 14px;
  }
}

/* ─── Very Small Mobile (≤ 360px) ─────────────────────── */
@media (max-width: 360px) {
  .video-section {
    padding: 24px 12px 30px;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .duration-badge {
    font-size: 0.82rem;
    padding: 8px 18px;
  }
}

/* ─── Trusted By Badge ─────────────────────────────────── */
.trusted-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  width: 100%;
}

.trusted-badge {
  background-color: #000;
  border: 1px solid #333;
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex-wrap: wrap;
}

.tb-text {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.tb-google-logo {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb-stars {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .trusted-badge {
    padding: 12px 20px;
    gap: 10px;
    justify-content: center;
    text-align: center;
    margin: 0 20px;
  }
  .tb-text {
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   CASE STUDY SECTION
═══════════════════════════════════════════════════════════ */
.case-study-section {
  width: 100%;
  padding: 15px 24px;
  display: flex;
  justify-content: center;
}

.case-study-container {
  max-width: 900px;
  width: 100%;
  background: #000;
  border-radius: 12px;
  padding: 40px;
}

.cs-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 8px;
  text-align: center;
}

.cs-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #E2E8F0;
  margin-bottom: 30px;
  text-align: center;
}

.cs-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 30px;
}

.cs-stat {
  display: flex;
  align-items: center;
  background: #110d0a;
  border: 1px solid rgba(204, 83, 39, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  min-width: 200px;
  flex: 1;
}

.cs-icon {
  width: 32px;
  height: 32px;
  color: var(--orange);
  margin-right: 16px;
  flex-shrink: 0;
}

.cs-stat-text {
  display: flex;
  flex-direction: column;
}

.cs-stat-text strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
}

.cs-stat-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #E2E8F0;
}

.cs-details {
  font-family: 'Montserrat', sans-serif;
  color: #E2E8F0;
}

.cs-details p {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.cs-roi {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.cs-roi-highlight {
  color: var(--orange);
}

.cs-quote {
  font-style: italic;
  font-size: 1.2rem;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
  margin: 0 0 16px 0;
  color: #FFF;
}

.cs-author {
  font-size: 1rem;
  color: #A0AEC0;
  margin-bottom: 32px !important;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  background: #FFF;
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cs-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}


/* ═══════════════════════════════════════════════════════════
   CASE STUDY BULLET LIST & RESPONSIVENESS
═══════════════════════════════════════════════════════════ */
.cs-bullet-list {
  list-style-type: disc;
  padding-left: 24px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 24px;
}

.cs-bullet-list li {
  margin-bottom: 20px;
}

/* Media Queries for Case Study */
/* Tablet */
@media screen and (max-width: 992px) {
  .case-study-section {
    padding: 40px 20px;
  }
  .case-study-container {
    padding: 30px;
  }
  .cs-title {
    font-size: 1.8rem;
  }
  .cs-subtitle {
    font-size: 1.1rem;
  }
  .cs-bullet-list {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .case-study-section {
    padding: 30px 16px;
  }
  .case-study-container {
    padding: 20px;
  }
  .cs-title {
    font-size: 1.5rem;
  }
  .cs-subtitle {
    font-size: 1rem;
  }
  .cs-bullet-list {
    font-size: 1rem;
    padding-left: 20px;
  }
  .cs-bullet-list li {
    margin-bottom: 8px;
  }
}


/* ═══════════════════════════════════════════════════════════
   CLIENT RESULTS & SCREENSHOTS SECTION
═══════════════════════════════════════════════════════════ */
.results-screenshots-section {
  width: 100%;
  padding: 25px 24px;
  display: flex;
  justify-content: center;
  background-color: transparent; /* Dark slate background matching the image */
}

.rs-container {
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rs-main-title {
  color: #FFFFFF;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

.rs-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 3px;
}

.rs-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.rs-logo-circle, .rs-logo-shield {
  width: 100px;
  height: 100px;
  background: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.rs-logo-shield {
  border-radius: 12px; /* For shield logos */
  padding: 10px;
}

.rs-logo-circle img, .rs-logo-shield img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.rs-label {
  color: #E2E8F0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

.rs-center-title h3 {
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.rs-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  position: relative;
  margin: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rs-diamond {
  width: 12px;
  height: 12px;
  background-color: var(--orange);
  transform: rotate(45deg);
}

.rs-highlight-quote {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.rs-stats-row {
  display: flex;
  gap: 20px;
  width: 100%;
  margin-bottom: 18px;
}

.rs-stat-card {
  flex: 1;
  background: #110d0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.rs-stat-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.rs-stat-top p {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
}

.rs-icon-gold {
  color: var(--orange);
  width: 32px;
  height: 32px;
}

.rs-stat-bottom span {
  color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.rs-screenshot-box {
  width: 100%;
  height: 100px;
  border: 1px solid rgba(204, 83, 39, 0.4);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-bottom: 20px;
}

.rs-screenshot-box p {
  color: #A0AEC0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}

.rs-testimonial-box {
  width: 100%;
  border: 1px solid rgba(204, 83, 39, 0.4);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  background: transparent;
}

.rs-quote-text {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 12px;
}

.rs-quote-author {
  color: #E2E8F0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

/* ════════════ RESPONSIVENESS ════════════ */
/* Tablet */
@media screen and (max-width: 992px) {
  .rs-main-title {
    font-size: 2rem;
  }
  .rs-center-title h3 {
    font-size: 1.4rem;
  }
  .rs-logo-circle, .rs-logo-shield {
    width: 80px;
    height: 80px;
  }
  .rs-highlight-quote {
    font-size: 1.3rem;
  }
  .rs-stats-row {
    flex-wrap: wrap;
  }
  .rs-stat-card {
    flex: 1 1 45%;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .results-screenshots-section {
    padding: 40px 16px;
  }
  .rs-main-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  .rs-header-row {
    flex-direction: column;
    gap: 20px;
  }
  .rs-center-title {
    order: -1; /* Move title to top on mobile */
  }
  .rs-center-title h3 {
    font-size: 1.3rem;
  }
  .rs-brand {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .rs-logo-circle, .rs-logo-shield {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }
  .rs-highlight-quote {
    font-size: 1.1rem;
  }
  .rs-stats-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .rs-stat-card {
    flex: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .rs-stat-bottom span {
    font-size: 1.5rem;
  }
  .rs-quote-text {
    font-size: 1.1rem;
  }
}


/* ═══════════════════════════════════════════════════════════
   STAT PILL HIGHLIGHT
═══════════════════════════════════════════════════════════ */
.stat-pill {
  display: inline-block;
  background-color: #feebe1; /* Light peach/orange background */
  color: var(--orange); /* Dark orange text */
  padding: 4px 12px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ════════════════════════════════════════════════════════
   MEET OUR FOUNDER SECTION
═════════════════════════════════════════════════════════ */
.founder-section {
  padding: 30px 24px;
  background-color: var(--black, #0A0A0A);
  display: flex;
  justify-content: center;
}

.founder-container {
  max-width: 1200px;
  width: 100%;
}

.founder-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white, #FFF);
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
  gap: 32px;
}

.founder-card {
  background: var(--card-bg, #111111);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.founder-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange, #CC5327);
}

.founder-img-wrapper {
  width: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-img-wrapper img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.founder-card:hover .founder-img-wrapper img {
  transform: scale(1.05);
}

.founder-caption {
  padding: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #E2E8F0;
  line-height: 1.5;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Media Queries for Founder Section */
@media (max-width: 992px) {
  .founder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .founder-section {
    padding: 20px 20px;
  }
  .founder-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ════════════════════════════════════════════════════════
   INDUSTRY RECOGNITION SECTION
═════════════════════════════════════════════════════════ */
.recognition-section {
  padding: 25px 24px;
  background-color: var(--black, #0A0A0A);
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.recog-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.recog-content {
  flex: 1;
  max-width: 550px;
}

.recog-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--white, #FFF);
  margin-bottom: 30px;
  text-transform: uppercase;
}

.recog-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.recog-pill {
  padding: 10px 24px;
  background: #1f1d1c;
  color: #A0AEC0;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.recog-pill:hover {
  background: #333;
  color: #FFF;
}

.recog-pill.active {
  background: var(--orange, #CC5327);
  color: #FFF;
}

.recog-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.2;
  margin-bottom: 24px;
}

.recog-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #A0AEC0;
  line-height: 1.7;
  margin-bottom: 40px;
}

.recog-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.recog-arrow {
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.recog-arrow:hover {
  color: var(--orange, #CC5327);
}

.recog-progress {
  width: 80px;
  height: 2px;
  background: #333;
  position: relative;
}

.recog-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--orange, #CC5327);
}

.recog-images {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recog-cert {
  position: absolute;
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: var(--card-bg, #111111);
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.recog-cert img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.recog-cert-1 {
  z-index: 2;
  transform: translateX(-40px) scale(1);
}

.recog-cert-2 {
  z-index: 1;
  transform: translateX(40px) scale(0.9);
  opacity: 0.6;
  filter: brightness(0.5);
}

/* Hover effect on stack */
.recog-images:hover .recog-cert-1 {
  transform: translateX(-70px) scale(1.05);
  z-index: 2;
}

.recog-images:hover .recog-cert-2 {
  transform: translateX(30px) scale(1);
  opacity: 1;
  filter: brightness(1);
  z-index: 3;
}

/* Responsive */
@media (max-width: 992px) {
  .recog-container {
    flex-direction: column;
    gap: 60px;
  }
  .recog-content {
    max-width: 100%;
    text-align: center;
  }
  .recog-pills {
    justify-content: center;
    margin-bottom: 15px;
  }
  .recog-controls {
    justify-content: center;
  }
  .recog-images {
    width: 100%;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .recognition-section {
    padding: 20px 20px;
  }
  .recog-title {
    font-size: 2.2rem;
  }
  .recog-subtitle {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .recog-cert {
    width: 240px;
  }
  .recog-cert-1 {
    transform: translateX(-20px) scale(1);
  }
  .recog-cert-2 {
    transform: translateX(20px) scale(0.9);
  }
  .recog-images:hover .recog-cert-1 {
    transform: translateX(-40px) scale(1.05);
  }
  .recog-images:hover .recog-cert-2 {
    transform: translateX(20px) scale(1);
  }
}
