/* ============================================
   CARZORA LANDING PAGE - STYLESHEET
   ============================================ */

/* ============================================
   ROOT & TYPOGRAPHY
   ============================================ */

:root {
  /* Color Palette */
  --lime-400: #32CD32;
  --lime-500: #28B828;
  --beige-100: #F9F7F0;
  --beige-200: #EBE7DA;
  --black-900: #191919;
  --black-800: #2A2A2A;

  /* Additional shades for flexibility */
  --gray-400: #8A8A8A;
  --gray-500: #6B6B6B;
  --gray-600: #525252;

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* scroll-behavior removed - handled by JavaScript for better control */


body {
  font-family: var(--font-body);
  background-color: var(--beige-100);
  color: var(--black-900);
  overflow-x: hidden;
}

/* ============================================
   UTILITIES & HELPERS
   ============================================ */

.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.06);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1.5rem;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 1.75rem;
  filter: brightness(0);
}

.nav-links {
  display: none;
  align-items: center;
}

.nav-links-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-header,
.mobile-menu-footer,
.link-arrow {
  display: none;
}

/* Mobile menu styling */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--beige-100);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1);
    z-index: 1100;
    overflow-y: auto;
    display: flex;
    /* Hidden by default right: -100% */
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-header {
    display: block;
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid var(--beige-200);
  }

  .mobile-logo {
    height: 1.5rem;
    filter: brightness(0);
    margin-bottom: 0.5rem;
  }

  .mobile-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .nav-links-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0;
  }

  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black-900);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
  }

  .nav-link:active {
    background: var(--beige-200);
    padding-left: 2.5rem;
  }

  .link-arrow {
    display: block;
    color: var(--lime-500);
    opacity: 0.5;
    transition: transform 0.3s ease;
  }

  .nav-link:active .link-arrow {
    transform: translateX(5px);
    opacity: 1;
  }

  .mobile-menu-footer {
    display: block;
    padding: 2rem;
    margin-top: auto;
    background: linear-gradient(to top, var(--beige-200), transparent);
  }

  .mobile-contacts {
    margin-top: 1.5rem;
    font-size: 0.825rem;
  }

  .mobile-contacts a {
    color: var(--black-900);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
  }

  .mobile-contacts p {
    color: var(--gray-500);
  }

  .nav-cta-desktop {
    display: none !important;
  }

  .nav-cta-mobile {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(40, 184, 40, 0.2);
  }
}

/* Desktop Visibility */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-cta-mobile {
    display: none;
  }
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--black-900);
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  /* Reduced gap */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1101;
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
}

.hamburger-line {
  width: 19px;
  /* Reduced from 24px (approx 20% smaller) */
  height: 2px;
  background: var(--black-900);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  /* Adjusted for smaller gap */
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  /* Adjusted for smaller gap */
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--black-900) 0%, var(--black-800) 100%);
  color: white;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--lime-400) 0%, var(--lime-500) 100%);
  color: var(--black-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(193, 240, 46, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--black-900);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
  border-color: var(--lime-400);
  box-shadow: 0 4px 16px -4px rgba(193, 240, 46, 0.2);
  transform: translateY(-2px);
}

/* Badge styles for buttons */
.badge-free,
.badge-price {
  background: var(--lime-400);
  color: var(--black-900);
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  padding-top: 7rem;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

/* Hero Background Decorations */
.hero-bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.decoration-1 {
  top: 5rem;
  right: 0;
  width: 500px;
  height: 500px;
  background: linear-gradient(to bottom right, rgba(193, 240, 46, 0.2), rgba(193, 240, 46, 0.1));
}

.decoration-2 {
  bottom: 5rem;
  left: 0;
  width: 400px;
  height: 400px;
  background: linear-gradient(to top right, rgba(193, 240, 46, 0.15), transparent);
}

/* Hero Text */
.hero-text-wrapper {
  max-width: 56rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.27;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  opacity: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #32CD32 0%, #28B828 50%, #228B22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subheadline {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto 1rem;
  line-height: 1.6;
  opacity: 0;
}

/* Hero Composition - Container for images */
.hero-composition {
  position: relative;
  width: 100%;
  height: 320px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-composition {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .hero-composition {
    height: 450px;
  }
}

/* Image Set */
.image-set {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Hero Elements (Vehicle, Seller, Buyer) */
.hero-element {
  position: absolute;
  will-change: transform, opacity;
  cursor: pointer;
}

.hero-vehicle {
  bottom: 0;
  left: 50%;
  transform-origin: center bottom;
  width: 66%;
  max-width: 580px;
  z-index: 10;
}

.hero-seller {
  bottom: 0;
  right: 1%;
  width: 15%;
  max-width: 140px;
  z-index: 20;
}

.hero-seller.seller-alt {
  width: 12.4%;
  /* Adjusted: 10% larger than previous reduced size */
  max-width: 115px;
}

.hero-seller.seller-v3-alt {
  width: 13.5%;
  /* 10% smaller */
  max-width: 126px;
}

.hero-seller.seller-2-alt {
  width: 12%;
  max-width: 112px;
}

.hero-vehicle.vehicle-v3-alt {
  width: 56.1%;
  /* 15% smaller */
  max-width: 493px;
}

.hero-buyer.buyer-v3-alt {
  width: 15%;
  /* 10% larger */
  max-width: 140px;
}

.hero-buyer {
  bottom: 0;
  left: 1%;
  width: 13.65%;
  max-width: 127px;
  z-index: 20;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-composition {
    height: 300px;
  }

  .hero-seller.seller-1-alt {
    width: 18.43%;
  }

  .hero-seller {
    right: -5%;
    width: 19%;
  }

  .hero-seller.seller-alt {
    width: 15.7%;
    /* Adjusted: 10% larger than previous reduced size */
  }

  .hero-seller.seller-v3-alt {
    width: 17.1%;
    /* 10% smaller */
  }

  .hero-vehicle.vehicle-v3-alt {
    width: 65%;
  }

  .hero-buyer.buyer-v3-alt {
    width: 18.4%;
  }

  .hero-buyer.buyer-1-alt {
    width: 17.15%;
  }

  .hero-buyer.buyer-2-alt {
    width: 17.1%;
  }

  .hero-seller.seller-2-alt {
    width: 15.2%;
  }

  .hero-buyer {
    left: -5%;
    width: 19%;
  }

  .hero-vehicle.vehicle-1-alt {
    width: 68.25%;
  }

  .hero-vehicle.vehicle-2-alt {
    width: 68.25%;
  }

  .hero-vehicle {
    width: 65%;
  }

  .hero-headline {
    font-size: 2.9rem;
  }

  .hero-text-wrapper {
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
}

/* Static Badges */
.static-badge {
  position: absolute;
  z-index: 40;
  opacity: 0;
  display: none;
}

.badge-sellers {
  right: 12%;
  top: 20%;
}

.badge-buyers {
  left: 12%;
  bottom: 35%;
}

@media (min-width: 1024px) {
  .static-badge {
    display: block;
  }

  .badge-sellers .badge-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 8px 16px -2px rgba(193, 240, 46, 0.1);
    border: 1px solid rgba(193, 240, 46, 0.2);
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--black-800);
  }

  .badge-buyers .badge-text {
    background: var(--lime-400);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 8px 16px -2px rgba(193, 240, 46, 0.3);
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--black-900);
  }
}

/* Tooltips */
.hero-tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  width: max-content;
  max-width: 200px;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-tooltip h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black-900);
  margin-bottom: 0.125rem;
}

.hero-tooltip p {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.3;
}

.hero-seller .hero-tooltip {
  top: 20%;
  right: 80%;
}

.hero-buyer .hero-tooltip {
  top: 20%;
  left: 80%;
}

.hero-vehicle .hero-tooltip {
  top: 25%;
  left: 50%;
  translate: -50% 0;
  z-index: 100;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  line-height: 1;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.carousel-dot.active {
  width: 40px;
  background: rgba(0, 0, 0, 0.05);
}

.carousel-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--lime-400);
  border-radius: inherit;
}

.carousel-dot.active .carousel-progress {
  animation: progressFill 6s linear forwards;
}

/* Pause animation when user hovers over the hero section */
.carousel-indicators.paused .carousel-progress {
  animation-play-state: paused !important;
}

@keyframes progressFill {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.carousel-dot:hover:not(.active) {
  background: rgba(0, 0, 0, 0.4);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  opacity: 0;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.hero-cta a {
  text-decoration: none;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-cta .btn {
  padding: 1rem 2rem;
  border-radius: 1rem;
}

/* Bank Partners Panel */
.bank-partners {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  opacity: 0;
}

.bank-partners-panel {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: start;
  justify-items: start;
  gap: 1.08rem;
}

.bank-partners-label {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
  margin-bottom: 0.3rem;
}

.bank-logo {
  height: 23px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.bank-logo:hover {
  opacity: 0.7;
}

@media (max-width: 640px) {
  .bank-partners-panel {
    gap: 1.08rem;
  }

  .bank-partners-label {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .bank-logo {
    height: 18px;
  }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
  padding: 2.5rem 1.5rem;
  background-color: white;
}

.problem-container {
  max-width: 1280px;
  margin: 0 auto;
}

.problem-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.problem-badge {
  display: inline-block;
  background: var(--black-900);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.problem-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--black-900);
}

@media (min-width: 768px) {
  .problem-title {
    font-size: 2.5rem;
  }
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.problem-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  padding-top: 3.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.12);
}

.card-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-avatar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.buyer-card .card-avatar {
  background: radial-gradient(circle at 30% 30%, rgba(219, 234, 254, 0.5), rgba(219, 234, 254, 0.15));
  box-shadow: 0 4px 12px -2px rgba(30, 64, 175, 0.15);
}

.seller-card .card-avatar {
  background: radial-gradient(circle at 30% 30%, rgba(254, 215, 170, 0.5), rgba(254, 215, 170, 0.15));
  box-shadow: 0 4px 12px -2px rgba(146, 64, 14, 0.15);
}

.card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

/* --- Mad CSS Avatar (Pop-out effect) --- */
.buyer-card .card-avatar,
.seller-card .card-avatar,
.quote-dealer-avatar,
.path-avatar {
  --size: 68px;
  --noggin: calc(var(--size) * 0.2);
  --height: calc(var(--size) + var(--noggin));

  width: var(--size) !important;
  height: var(--size) !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  overflow: visible !important;
  position: absolute !important;
  border-radius: 50% !important;
  border: 2px solid white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  z-index: 10 !important;
}

/* Specific Positions */
.buyer-card .card-avatar,
.seller-card .card-avatar,
.seller-avatar {
  top: -15px !important;
  left: 0 !important;
}

.buyer-avatar {
  top: -15px !important;
  left: 0 !important;
}

@media (min-width: 1024px) {
  .buyer-path .path-avatar {
    left: auto !important;
    right: 0 !important;
  }
}

.quote-dealer-avatar {
  top: 122px !important;
  right: 25px !important;
}

/* Specific Backgrounds */
.buyer-card .card-avatar,
.buyer-avatar {
  background: radial-gradient(circle at 30% 30%, #f0f7ff, #dbeafe) !important;
  border-color: #DBEAFE !important;
}

.seller-card .card-avatar,
.seller-avatar {
  background: radial-gradient(circle at 30% 30%, #fff7ed, #ffedd5) !important;
  border-color: #FED7AA !important;
}

.quote-dealer-avatar {
  background: radial-gradient(circle at 30% 30%, #7f1d1d, #450a0a) !important;
  /* Dark Red/Maroon for Dealer */
}

.buyer-card .card-avatar img,
.seller-card .card-avatar img,
.quote-dealer-avatar img,
.path-avatar img {
  width: 135% !important;
  height: var(--height) !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  position: relative !important;
  z-index: 2 !important;
  transform: translateY(0);

  --mask-circle-y: calc(var(--noggin) + (var(--size) / 2));
  --mask-radius: calc(var(--size) / 2);

  -webkit-mask-image:
    linear-gradient(to bottom, #000 0%, #000 var(--mask-circle-y), transparent var(--mask-circle-y)),
    radial-gradient(circle at center var(--mask-circle-y), #000 var(--mask-radius), transparent var(--mask-radius));
  -webkit-mask-repeat: no-repeat;

  mask-image:
    linear-gradient(to bottom, #000 0%, #000 var(--mask-circle-y), transparent var(--mask-circle-y)),
    radial-gradient(circle at center var(--mask-circle-y), #000 var(--mask-radius), transparent var(--mask-radius));
  mask-repeat: no-repeat;
}




.card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  width: fit-content;
  position: absolute;
  top: 10px;
  left: 70px;
  z-index: 20;
}

.buyer-label {
  background: rgba(219, 234, 254, 0.3);
  color: #1E40AF;
  border: 2px solid #DBEAFE;
}

.seller-label {
  background: rgba(254, 215, 170, 0.3);
  color: #92400E;
  border: 2px solid #FED7AA;
}

.fake-post,
.fake-quote {
  background: var(--beige-100);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  min-height: 250px;
  /* Synchronized height */
}

.fake-post {
  display: grid;
  grid-template-columns: 241px 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
}

.post-text {
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 500;
  color: var(--black-900);
}

.fake-quote {
  background: var(--black-900);
  color: white;
  border: none;
  position: relative;
}

.post-header,
.quote-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fake-post .post-header {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.fake-post .post-content {
  grid-column: 2;
  grid-row: 3;
  align-self: center;
}

.fake-post .post-image {
  grid-column: 1;
  grid-row: 3;
  align-self: center;
}

.post-avatar,
.quote-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--beige-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.post-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-avatar {
  background: var(--black-800);
  font-size: 1.25rem;
}

/* quote-dealer-avatar merged into Mad CSS Avatar section */


.quote-note-above {
  position: absolute;
  top: 75px;
  right: 100px;
  max-width: 240px;
  text-align: center;
  z-index: 15;
  background: white;
  color: var(--black-900);
  padding: 1.25rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bubble-vehicle {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin: 0;
}

.bubble-struck {
  color: #EF4444;
  text-decoration: line-through;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0;
}

.bubble-offer {
  font-weight: 700;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.35;
  margin: 0;
  color: var(--black-900);
}

.quote-note-above::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid white;
}

.post-meta,
.quote-meta {
  flex: 1;
}

.post-name,
.quote-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.post-platform,
.quote-platform {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.quote-platform {
  color: var(--gray-500);
}

.post-content,
.quote-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-content p,
.quote-content p {
  margin: 0;
}

.post-image {
  width: 241px;
  height: 147px;
  border-radius: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.post-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.post-highlight {
  font-weight: 700;
  background: #FEF3C7;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  display: inline-block;
  width: fit-content;
}



@media (max-width: 767px) {
  .fake-quote {
    min-height: 250px;
    padding-top: 1.25rem;
  }

  .quote-header {
    margin-bottom: 0.5rem;
  }

  .quote-dealer-avatar {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    z-index: 20;
  }

  .quote-note-above {
    top: auto;
    bottom: 2.25rem;
    right: 5.25rem;
    max-width: 200px;
    padding: 1rem;
    border-radius: 1.25rem !important;
    gap: 0.3rem;
  }

  /* Flip tail to point right toward avatar */
  .quote-note-above::after {
    bottom: 12px;
    right: -8px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid white;
    border-right: none;
  }
}



.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black-900);
}

.card-description {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 0.975rem;
}

.solution-bridge {
  text-align: center;
  background: var(--lime-400);
  border-radius: 9999px;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto;
  box-shadow: 0 4px 24px -4px rgba(193, 240, 46, 0.3);
}

.bridge-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--black-900);
  margin: 0;
}

.bridge-arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--black-900);
  flex-shrink: 0;
}

/* ============================================
   FOR BUYERS SECTION
   ============================================ */

.buyers-section {
  padding: 2.5rem 1.5rem;
  background-color: var(--black-900);
  color: white;
}

.buyers-container {
  max-width: 1280px;
  margin: 0 auto;
}

.buyers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .buyers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.buyers-badge {
  display: inline-block;
  background: var(--lime-400);
  color: var(--black-900);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.buyers-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

@media (min-width: 768px) {
  .buyers-title {
    font-size: 2.25rem;
  }
}

.buyers-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--lime-400);
  border: 2px solid var(--black-900);
  border-radius: 0.5rem;
  font-weight: 700;
  color: var(--black-900);
  flex-shrink: 0;
}

.benefit-item h4 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: white;
}

.benefit-item p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.buyers-section .benefit-item h4 {
  color: white;
}

.buyers-section .benefit-item p {
  color: rgba(255, 255, 255, 0.7);
}

.sellers-section .benefit-item h4 {
  color: var(--black-900);
}

.sellers-section .benefit-item p {
  color: var(--gray-600);
}

.sellers-section .sellers-cta {
  color: var(--black-900);
}

.btn-cta {
  background: var(--lime-400);
  color: var(--black-900);
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta:hover {
  background: white;
  box-shadow: 0 4px 12px -2px rgba(193, 240, 46, 0.3);
  transform: translateY(-2px);
}

.included-card {
  background: var(--black-800);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}

.included-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.included-header h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
  color: white;
}

.included-price {
  background: var(--lime-400);
  color: var(--black-900);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
}

.included-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.included-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(193, 240, 46, 0.2);
}

.item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.item-content {
  flex: 1;
}

.item-content h5 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: white;
}

.item-content p {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.item-check {
  color: var(--lime-400);
  font-weight: 700;
  flex-shrink: 0;
}

.included-comparison {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.comparison-row span:first-child {
  color: rgba(255, 255, 255, 0.7);
}

.comparison-struck {
  color: #EF4444;
  text-decoration: line-through;
}

.comparison-row.highlight {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  color: white;
}

.comparison-row.highlight span:last-child {
  color: var(--lime-400);
  font-size: 1rem;
}

/* ============================================
   FOR SELLERS SECTION
   ============================================ */

.sellers-section {
  padding: 2.5rem 1.5rem;
  background-color: var(--beige-100);
}

.sellers-container {
  max-width: 1280px;
  margin: 0 auto;
}

.sellers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .sellers-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sellers-badge {
  display: inline-block;
  background: var(--lime-400);
  color: var(--black-900);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.sellers-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--black-900);
}

@media (min-width: 768px) {
  .sellers-title {
    font-size: 2.25rem;
  }
}

.sellers-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.key-message {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.key-message:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.12);
}

.key-message h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.key-message p {
  color: var(--gray-600);
  margin: 0;
}

.sellers-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sellers-visual {
  position: relative;
}

.linking-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.linking-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.12);
}

.linking-header {
  margin-bottom: 1.5rem;
}

.linking-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.linking-header h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}

.linking-code-display {
  background: var(--beige-100);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.linking-code-display .code-text {
  font-size: 1.2rem;
  color: var(--black-900);
}

.code-text {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--black-900);
}

.code-validity {
  font-size: 0.825rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.code-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.btn-action {
  background: var(--black-900);
  color: white;
  border: none;
  padding: 0.625rem 1rem;
  border-radius: 0.625rem;
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-action:hover {
  background: var(--lime-400);
  color: var(--black-900);
}

.share-btn {
  background: var(--beige-100);
  color: var(--black-900);
  border: 1px solid var(--beige-200);
}

.share-btn:hover {
  background: var(--black-900);
  color: white;
}

.floating-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--lime-400);
  border: 2px solid var(--black-900);
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  transform: rotate(6deg);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 2.5rem 1.5rem;
  background-color: white;
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* Left Column */
.faq-header-column {
  position: relative;
}

@media (min-width: 1024px) {
  .faq-header-column {
    position: sticky;
    top: 6rem;
  }
}

.faq-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--black-900);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .faq-heading {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .faq-heading {
    font-size: 3.5rem;
  }
}

.faq-highlight {
  background: linear-gradient(135deg, #32CD32 0%, #28B828 50%, #228B22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.faq-contact {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

.faq-email {
  color: var(--lime-500);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.faq-email:hover {
  color: var(--lime-400);
}

/* Role Toggle Switch */
.faq-role-toggle {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.25rem;
  background: var(--beige-100);
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.role-toggle-slider {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  height: calc(100% - 0.5rem);
  width: calc(50% - 0.25rem);
  background: var(--lime-400);
  border-radius: 9999px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(50, 205, 50, 0.3);
  pointer-events: none;
  z-index: 0;
}

.role-toggle-slider.slide-right {
  transform: translateX(calc(100% + 0.5rem));
}

.role-toggle-btn {
  flex: 1;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  background: transparent;
  color: var(--gray-600);
  border-radius: 9999px;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  text-align: center;
}

.role-toggle-btn:hover {
  color: var(--black-900);
}

.role-toggle-btn.active {
  color: var(--black-900);
}

/* Right Column Container */
.faq-right-column {
  display: flex;
  flex-direction: column;
}

/* Right Column */
.faq-list {
  display: none;
  flex-direction: column;
}

.faq-list.active {
  display: flex;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  transition: border-color 0.2s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.faq-question:hover span {
  color: var(--lime-500);
}

.faq-question span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--black-900);
  line-height: 1.4;
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .faq-question span {
    font-size: 1.125rem;
  }
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--black-900);
  stroke-width: 2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .faq-section {
    padding: 2.5rem 1.5rem;
  }

  .faq-heading {
    font-size: 2rem;
  }

  .faq-contact {
    font-size: 1rem;
  }

  .faq-role-toggle {
    margin-top: 1rem;
  }

  .faq-question {
    padding: 1.25rem 0;
    gap: 1rem;
  }

  .faq-question span {
    font-size: 0.9375rem;
  }

  .faq-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .faq-answer p {
    padding-bottom: 1.25rem;
    font-size: 0.9375rem;
  }
}

/* ============================================
   APP DETAILS SECTION
   ============================================ */

.app-details-section {
  background: var(--beige-100);
  padding: 2.5rem 1.5rem;
}

.app-details-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Section Header */
.app-details-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.app-details-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--lime-400);
  color: var(--black-900);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.app-details-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--black-900);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.app-details-subtitle {
  font-size: 1.25rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Tabbed Interface */
.app-tabs-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .app-tabs-wrapper {
    grid-template-columns: 320px 1fr;
    gap: 3rem;
  }
}

/* Vertical Sidebar Tabs */
.app-tabs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-tab {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border: 2px solid transparent;
  border-radius: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.app-tab:hover {
  border-color: rgba(50, 205, 50, 0.3);
  transform: translateX(4px);
}

.app-tab.active {
  background: var(--lime-400);
  border-color: var(--lime-400);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(50, 205, 50, 0.2);
}

.tab-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.tab-content {
  flex: 1;
}

.tab-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black-900);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.tab-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin: 0;
}

.app-tab.active .tab-description {
  color: var(--black-800);
}

/* Tab Content Area */
.app-tabs-content {
  position: relative;
  min-height: 500px;
}

.tab-panel {
  display: none;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Panel Layout */
.panel-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .panel-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* Panel Visual */
.panel-visual {
  order: 2;
}

@media (min-width: 992px) {
  .panel-visual {
    order: 1;
  }
}

.visual-composition {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contemplating-image {
  width: 100%;
  max-width: 450px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contemplating-image img {
  width: 100%;
  height: auto;
  display: block;
}

.app-screenshot-overlay {
  position: absolute;
  right: -10%;
  bottom: -10%;
  width: 55%;
  max-width: 280px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 4px solid var(--beige-100);
}

.app-screenshot-overlay img {
  width: 100%;
  height: auto;
  display: block;
}

.app-screenshot {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.app-screenshot img,
.app-screenshot video {
  width: 100%;
  height: auto;
  display: block;
}

/* Panel Content */
.panel-content {
  order: 1;
}

@media (min-width: 992px) {
  .panel-content {
    order: 2;
  }
}

.panel-badge {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  background: rgba(50, 205, 50, 0.1);
  color: var(--black-900);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--lime-400);
}

.panel-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black-900);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.panel-body {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Panel Features */
.panel-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.panel-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--black-800);
  line-height: 1.6;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--lime-400);
  color: var(--black-900);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Process Steps */
.process-steps {
  margin-top: 2rem;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--lime-400);
  color: var(--black-900);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black-900);
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* AI Feature Badge */
.ai-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(50, 205, 50, 0.1) 0%, rgba(50, 205, 50, 0.05) 100%);
  border: 1px solid var(--lime-400);
  border-radius: 2rem;
}

.ai-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.ai-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black-900);
  letter-spacing: 0.02em;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .app-details-section {
    padding: 2.5rem 1.5rem;
  }

  .app-details-header {
    margin-bottom: 3rem;
  }

  .app-details-title {
    font-size: 2rem;
  }

  .app-details-subtitle {
    font-size: 1rem;
  }

  .app-tabs-sidebar {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.25rem;
    background: white;
    border-radius: 1.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .app-tab {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 0.25rem;
    min-width: 0;
    gap: 0.25rem;
    border: none;
    background: transparent;
  }

  .app-tab:hover {
    transform: none;
  }

  .app-tab.active {
    background: var(--lime-400);
    transform: none;
    box-shadow: none;
  }

  .tab-icon {
    font-size: 1.25rem;
  }

  .tab-title {
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }

  .tab-description {
    display: none;
  }

  .app-tabs-content {
    min-height: 400px;
  }

  .panel-heading {
    font-size: 1.5rem;
  }

  .panel-body {
    font-size: 1rem;
  }

  .app-screenshot-overlay {
    right: -5%;
    bottom: -5%;
    width: 50%;
  }

  .contemplating-image {
    max-width: 100%;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--black-900);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 1.5rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

/* Brand column */
.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 1.75rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Link columns */
.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-link {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--lime-400);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 3rem 0 1.5rem;
}

/* Bottom row */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-soft {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.floating-badge {
  animation: float 6s ease-in-out infinite;
}

.floating-badge-delayed {
  animation: float 6s ease-in-out infinite 2s;
}

.animate-pulse-soft {
  animation: pulse-soft 3s ease-in-out infinite;
}

/* ============================================
   SOLUTION SECTION (HOW IT WORKS)
   ============================================ */

.solution-section {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, white 0%, var(--beige-100) 100%);
  position: relative;
  overflow: hidden;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(193, 240, 46, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.solution-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.solution-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.solution-badge {
  display: inline-block;
  background: var(--black-900);
  color: var(--lime-400);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.solution-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--black-900);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .solution-title {
    font-size: 3rem;
  }
}

/* Journey Wrapper - Three Column Layout */
.journey-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

@media (min-width: 1024px) {
  .journey-wrapper {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
}

/* Path Styling */
.journey-path {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-top: 3.5rem;
}

.path-label {
  margin-bottom: 0.5rem;
  position: relative;
  height: 68px;
}

.path-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 10;
}

.path-avatar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.buyer-avatar {
  background: radial-gradient(circle at 30% 30%, rgba(219, 234, 254, 0.5), rgba(219, 234, 254, 0.15));
  box-shadow: 0 4px 12px -2px rgba(30, 64, 175, 0.15);
}

.seller-avatar {
  background: radial-gradient(circle at 30% 30%, rgba(254, 215, 170, 0.5), rgba(254, 215, 170, 0.15));
  box-shadow: 0 4px 12px -2px rgba(146, 64, 14, 0.15);
}

.path-avatar img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.label-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: absolute;
  top: 10px;
  left: 70px;
  z-index: 20;
}

.seller-badge {
  background: rgba(254, 215, 170, 0.3);
  color: #92400E;
  border: 2px solid #FED7AA;
}

.buyer-badge {
  background: rgba(219, 234, 254, 0.3);
  color: #1E40AF;
  border: 2px solid #DBEAFE;
}

/* Journey Steps */
.journey-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-circle {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--black-900);
  color: var(--lime-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.step-line {
  width: 3px;
  height: 4rem;
  background: linear-gradient(180deg, var(--black-900) 0%, rgba(25, 25, 25, 0.2) 100%);
  margin-top: 0.5rem;
}

.step-3 .step-line {
  display: none;
}

/* Vertical connectors for mobile journey */
@media (max-width: 1023px) {
  .connector-line {
    display: block !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--lime-400) 50%,
        var(--lime-400) 100%);
    box-shadow: 0 0 12px rgba(50, 205, 50, 0.4);
  }

  .top-line {
    bottom: 100%;
    height: 4rem;
    margin-bottom: -1px;
    background: linear-gradient(0deg,
        var(--lime-400) 0%,
        var(--lime-400) 40%,
        transparent 100%);
  }

  /* Upward Arrowhead - Touching Border */
  .top-line::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-style: solid;
    border-width: 0 6px 10px 6px;
    border-color: transparent transparent var(--lime-400) transparent;
  }

  .bottom-line {
    top: 100%;
    height: 4.5rem;
    margin-top: -1px;
    background: linear-gradient(180deg,
        var(--lime-400) 0%,
        var(--lime-400) 40%,
        transparent 100%);
  }

  /* Downward Arrowhead - Touching Border */
  .bottom-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-style: solid;
    border-width: 10px 6px 0 6px;
    border-color: var(--lime-400) transparent transparent transparent;
  }
}

@media (min-width: 1024px) {
  .connector-line {
    display: none;
  }
}

.step-content {
  padding-top: 0.5rem;
  flex: 1;
}

.step-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--black-900);
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Center Connection */
.journey-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .journey-center {
    padding: 0;
  }
}

.connection-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.connection-node {
  position: relative;
  z-index: 10;
}

.code-display {
  background: white;
  border: 3px solid var(--lime-400);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow:
    0 0 0 8px rgba(193, 240, 46, 0.1),
    0 8px 32px -8px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(193, 240, 46, 0.1),
      0 8px 32px -8px rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow:
      0 0 0 12px rgba(193, 240, 46, 0.2),
      0 12px 40px -8px rgba(193, 240, 46, 0.3);
  }
}

.code-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

.code-text {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--black-900);
  margin-bottom: 0.25rem;
}

.code-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.connection-line {
  display: none;
}

@media (min-width: 1024px) {
  .connection-line {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 155%;
    height: 3px;
    /* Slightly thicker */
    background: linear-gradient(90deg,
        transparent 0%,
        var(--lime-400) 25%,
        var(--lime-400) 75%,
        transparent 100%);
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.3);
    /* Add glow */
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  .connection-line::before,
  .connection-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
  }

  .connection-line::before {
    left: 15%;
    border-width: 6px 10px 6px 0;
    border-color: transparent var(--lime-400) transparent transparent;
    transform: translateY(-50%);
  }

  .connection-line::after {
    right: 15%;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent var(--lime-400);
    transform: translateY(-50%);
  }
}

/* Buyer Path - Right Align on Desktop */
@media (min-width: 1024px) {
  .buyer-path .path-label {
    text-align: right;
  }

  .buyer-path .label-badge {
    left: auto !important;
    right: 70px !important;
  }

  .buyer-path .journey-step {
    flex-direction: row-reverse;
  }

  .buyer-path .step-content {
    text-align: right;
  }
}

/* Journey Finale */
.journey-finale {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.finale-card {
  background: linear-gradient(135deg, var(--black-900) 0%, var(--black-800) 100%);
  color: white;
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: visible !important;
}

.finale-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(193, 240, 46, 0.1), transparent 50%);
  animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}




/* finale-icon removed */

/* Stacked Avatars */
.stacked-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.stacked-avatar {
  width: 113px;
  height: auto;
}

.finale-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.finale-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .solution-section {
    padding: 4rem 1.5rem 3rem;
  }

  .solution-title {
    font-size: 2rem;
  }

  .step-circle {
    width: 3rem;
    height: 3rem;
    font-size: 1.125rem;
  }

  .step-line {
    height: 3rem;
  }

  .step-content h3 {
    font-size: 1.125rem;
  }

  .step-content p {
    font-size: 0.875rem;
  }

  .code-display {
    padding: 1.5rem 1rem;
    min-width: 180px;
  }

  .code-text {
    font-size: 1.25rem;
  }

  .finale-card {
    padding: 2rem 1.5rem;
  }

  .finale-card h3 {
    font-size: 1.5rem;
  }

  .finale-card p {
    font-size: 0.9375rem;
  }
}

/* ============================================
   CASE STUDY CARD & MODAL
   ============================================ */

.case-study-card-horizontal {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.7rem;
  margin: 2.5rem auto 0;
  width: fit-content;
  max-width: 756px;
}

.case-study-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.case-study-image-horizontal {
  width: 236px;
  height: 168px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, var(--beige-200) 0%, var(--beige-100) 100%);
}

.case-study-image-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content-horizontal {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.84rem;
}

.case-study-numbers-horizontal {
  display: flex;
  align-items: center;
  gap: 0.84rem;
  flex-wrap: wrap;
}

.amount-big {
  font-size: 1.68rem;
  font-weight: 700;
  color: var(--black-900);
}

.vs-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 400;
}

.amount-small {
  font-size: 1.05rem;
  color: var(--gray-600);
  font-weight: 600;
}

.case-study-text-horizontal {
  font-size: 0.84rem;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 672px;
}

.case-study-cta-horizontal {
  background: none;
  border: none;
  color: var(--lime-400);
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  font-family: var(--font-body);
  width: fit-content;
}

.case-study-cta-horizontal:hover {
  color: var(--lime-500);
  transform: translateX(4px);
}

/* Case Study Modal */

.case-study-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

.case-study-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(25, 25, 25, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 10;
  background: white;
  border-radius: 2rem;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 25px 100px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--gray-500);
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.modal-close:hover {
  color: var(--black-900);
}

.modal-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--beige-200) 0%, var(--beige-100) 100%);
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 3rem 2.5rem 2.5rem;
}

.modal-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--black-900);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.modal-section {
  margin-bottom: 2rem;
}

.section-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black-900);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.modal-section p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Comparison Box */
.comparison-box {
  background: var(--beige-100);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1rem 0;
  border-left: 4px solid var(--lime-400);
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 1rem;
}

.comparison-item .label {
  color: var(--gray-600);
  font-weight: 500;
}

.comparison-item .amount {
  font-weight: 700;
  color: var(--black-900);
  font-size: 1.25rem;
}

.comparison-item.highlight .amount {
  color: var(--lime-400);
  font-size: 1.5rem;
}

.comparison-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0.5rem 0;
}

.difference-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: rgba(50, 205, 50, 0.1);
  border-radius: 0.75rem;
  margin-top: 1rem;
  text-align: center;
}

.difference-badge .difference {
  font-weight: 700;
  color: var(--lime-400);
  font-size: 1.25rem;
}

.difference-badge .percentage {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}

/* Story and Outcome Lists */
.story-list,
.outcome-list {
  list-style: none;
  padding: 0;
}

.story-list li,
.outcome-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
}

.story-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lime-400);
  font-weight: 700;
}

.outcome-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-400);
  font-weight: 700;
}

/* Modal CTA */
.modal-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige-200);
  text-align: center;
}

.cta-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--black-900);
  margin-bottom: 1.5rem;
  display: block;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-buttons a {
  flex: 1;
  max-width: 180px;
}

/* Mobile Adjustments for Case Study Card - Compact Redesign */
@media (max-width: 768px) {
  .case-study-card-horizontal {
    flex-direction: row;
    padding: 0.75rem;
    gap: 1rem;
    margin: 1.5rem auto 0;
    max-width: 100%;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  }

  .case-study-image-horizontal {
    width: 84px;
    height: 84px;
    border-radius: 0.75rem;
    flex-shrink: 0;
  }

  .case-study-content-horizontal {
    gap: 0.25rem;
    padding-right: 0.25rem;
  }

  .case-study-numbers-horizontal {
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
  }

  .amount-big {
    font-size: 1.125rem;
  }

  .vs-label {
    font-size: 0.625rem;
  }

  .amount-small {
    font-size: 0.8125rem;
  }

  .case-study-text-horizontal {
    font-size: 0.75rem;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray-500);
  }

  .case-study-cta-horizontal {
    font-size: 0.75rem;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .modal-body {
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    max-width: 100%;
  }
}