/*



 */

:root {
  --redesign-blue-500: #3397dc;
  --redesign-blue-800: #016ec2;
  --redesign-red-500: #cc0000;
  --redesign-purple-500: #715eb2;
  --redesign-gray-100: #f5f5f5;
  --redesign-gray-500: #666;
  --redesign-gray-800: #333;
}

.kelsey_styles .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.kelsey_styles h2 {
  font-weight: bold;
}
/* Hero Section */
.kelsey_styles .hero-section {
  background-color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.kelsey_styles .bike-tiles-grid {
  position: fixed;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: 15px;
  z-index: 0;
  transform: rotate(-5deg);
  will-change: transform;
}

.kelsey_styles .bike-tile {
  width: 120px;
  height: 120px;
  position: relative;
}

.kelsey_styles .bike-tile span {
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease, margin 0.3s ease;
}

.kelsey_styles .bike-tile:hover span {
  background-color: var(--redesign-blue-500);
  margin: -20px 0 0 -20px;
}

.kelsey_styles .bike-tile.stolen-alert span {
  animation: kelsey_styles_pulse 2s ease-in-out infinite;
}

@keyframes kelsey_styles_pulse {
  0%, 100% {
    background-color: var(--redesign-red-500);
    margin: -20px 0 0 -20px;
  }
  50% {
    background-color: transparent;
    margin: 0px;
  }
}

.kelsey_styles .hero-content {
  text-align: center;
  position: absolute;
  top: calc(50% - 40px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.kelsey_styles .hero-stats {
  display: flex;
  justify-content: center;
  margin-bottom: -1.5rem;
  position: relative;
  z-index: 2;
  animation: kelsey_styles_fadeIn 1s ease-in 0.5s both;
}

.kelsey_styles .stat-box {
  color: white;
  padding: 1rem 1.5rem 3rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 560px;
  min-height: 200px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.kelsey_styles .stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.kelsey_styles .stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}

.kelsey_styles .stat-box:nth-child(1) {
  background-image: url(/assets/kelsey/shield_dark-gray-db88ea031c3d2a5bc2fbd75d42780ac53fbbd455550f4aca8275516d06254ba5.png);
  z-index: 1;
  margin-right: -300px;
  width: 350px;
  height: 140px;
  min-width: 350px;
  min-height: 140px;
  max-width: 350px;
  max-height: 140px;
  padding: 0.8rem 1.2rem 2.5rem;
  transform: translateY(60px);
}

.kelsey_styles .stat-box:nth-child(2) {
  background-image: url(/assets/kelsey/shield_light-blue-e0bc164db92962b8b143168128b901d26ac68cdf59f19685a3f3bbcc1553c80b.png);
  z-index: 3;
  width: 550px;
  height: 204px;
  min-width: 550px;
  min-height: 204px;
  max-width: 550px;
  max-height: 204px;
  padding: 1.2rem 1.8rem 3.5rem;
}

.kelsey_styles .stat-box:nth-child(2) .stat-number {
  font-size: 2.2rem;
}

.kelsey_styles .stat-box:nth-child(2) .stat-label {
  font-size: 0.85rem;
}

.kelsey_styles .stat-box:nth-child(3) {
  background-image: url(/assets/kelsey/shield_purple-57f6243ae4cdaffacb1b960ef3bcc830ad3025eeb096ffeb98391121f985b7b9.png);
  z-index: 1;
  margin-left: -300px;
  width: 350px;
  height: 140px;
  min-width: 350px;
  min-height: 140px;
  max-width: 350px;
  max-height: 140px;
  padding: 0.8rem 1.2rem 2.5rem;
  transform: translateY(60px);
}

@keyframes kelsey_styles_fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Move side shields below main shield on small screens to prevent overflow */
@media (max-width: 430px) {
  .kelsey_styles .stat-box:nth-child(1) {
    margin-top: 150px;
    transform: translateX(70px);
  }

  .kelsey_styles .stat-box:nth-child(3) {
    margin-top: 150px;
    transform: translateX(-70px);
  }
}

.kelsey_styles .hero-section h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--redesign-gray-800);
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem 3rem;
  padding-top: 3rem;
  display: inline-block;
}

/* For Section */
.kelsey_styles .for-section {
  background-color: var(--redesign-gray-100);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
  margin-top: -20vh;
}

.kelsey_styles .for-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--redesign-gray-800);
}

/* NOTE: not wrapped in .kelsey_styles because it's rendered not on the homepage */
.kelsey_styles_buttons-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.kelsey_styles_buttons-grid .category-button {
  background-color: transparent;
  border-radius: 0;
  padding: 0.75rem;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  flex: 1;
  min-width: 160px;
  position: relative;
}

.kelsey_styles_buttons-grid .category-button:hover {
  text-decoration: none;
  transform: translateY(-5px);
}

.kelsey_styles_buttons-grid .category-button:hover span {
  color: var(--redesign-purple-500);
}

.kelsey_styles_buttons-grid .category-button:hover .img-wrapper::after {
  animation: kelsey_styles_drawBorder 0.6s ease-in-out forwards;
}

.kelsey_styles_buttons-grid .category-button.theft-victims:hover span {
  color: var(--redesign-red-500);
}

.kelsey_styles_buttons-grid .img-wrapper {
  position: relative;
  display: inline-block;
  width: 130px;
  height: 130px;
  margin-bottom: 0.75rem;
}

.kelsey_styles_buttons-grid .img-wrapper::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 4px solid var(--redesign-purple-500);
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
}

.kelsey_styles_buttons-grid .category-button:nth-child(5) .img-wrapper::after {
  border-color: var(--redesign-red-500);
}

@keyframes kelsey_styles_drawBorder {
  0% {
    opacity: 1;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  75% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.kelsey_styles_buttons-grid .category-button img {
  width: 100%;
  height: 100%;
  display: block;
}

.kelsey_styles_buttons-grid .category-button span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--redesign-gray-800);
  transition: color 0.3s ease;
}

/* Stolen Bikes Section */
.kelsey_styles .stolen-bikes-section {
  background-color: var(--redesign-blue-800);
  background-image: url(/assets/kelsey/bikes-unique-d69bde6678e82a3543e80022f87735d0c9e97c879860d0d3a1b048aecc86ce14.png);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 4rem 0;
  color: white;
  position: relative;
}

.kelsey_styles .stolen-bikes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: color-mix(in srgb, var(--redesign-blue-800) 80%, transparent);
  z-index: 1;
}

.kelsey_styles .stolen-bikes-section .container {
  position: relative;
  z-index: 2;
}

.kelsey_styles .stolen-bikes-section h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 0.25rem;
  line-height: 1;
  text-transform: uppercase;
  color: white;
}

.kelsey_styles .stolen-bikes-section h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  color: white;
}

.kelsey_styles .recovery-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.kelsey_styles .bike-container {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.kelsey_styles .black-box {
  width: 100%;
  max-width: 400px;
  position: relative;
  height: 400px;
}

.kelsey_styles .bike-image-placeholder {
  position: absolute;
  top: 5%;
  left: 5%;
  /*transform: translate(-50%, -50%);*/
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kelsey_styles .bike-photo {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  background-color: transparent;
  border-radius: 0;
  display: block;
}

.kelsey_styles .testimonial-container {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 400px;
}

.kelsey_styles .location-pin {
  width: auto;
  max-height: 133px;
  object-fit: contain;
  margin-left: 1rem;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 3;
}

.kelsey_styles .testimonial-box {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  padding: 1.5rem;
  color: var(--redesign-gray-800);
  position: relative;
  height: 267px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  justify-content: space-between;
}

.kelsey_styles .user-info {
  margin-bottom: 0.5rem;
  text-align: right;
}

.kelsey_styles .user-name {
  font-weight: bold;
  font-size: 1.1rem;
}

.kelsey_styles .recovery-date {
  font-size: 0.9rem;
  color: var(--redesign-gray-500);
  margin-bottom: 1rem;
  text-align: right;
}

.kelsey_styles .testimonial-text {
  font-style: italic;
  line-height: 1.6;
}

.kelsey_styles .testimonial-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.kelsey_styles .nav-arrow {
  background-color: var(--redesign-purple-500);
  color: white;
  border: none;
  border-radius: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.kelsey_styles .nav-arrow:hover {
  background-color: var(--redesign-purple-500);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .kelsey_styles .hero-section h1 {
    font-size: 2.5rem;
  }

  .kelsey_styles .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .kelsey_styles .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .kelsey_styles_buttons-grid {
    gap: 1rem;
  }

  .kelsey_styles .recovery-showcase {
    flex-direction: column;
    gap: 2rem;
  }

  .kelsey_styles .for-section h2,
  .kelsey_styles .stolen-bikes-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .kelsey_styles .hero-section h1 {
    font-size: 2rem;
  }

  .kelsey_styles_buttons-grid .category-button {
    padding: 1.5rem 0.5rem;
  }

  .kelsey_styles_buttons-grid .category-button img {
    width: 120px;
    height: 120px;
  }
}

/* Stolen Question Section */
.kelsey_styles .stolen-question-section {
  background-color: white;
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 10;
}

.kelsey_styles .stolen-question-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}

.kelsey_styles .bike-animation-container {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kelsey_styles .bike-transition {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.kelsey_styles .bike-registered,
.kelsey_styles .bike-stolen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 2s ease-in-out;
}

.kelsey_styles .bike-registered {
  opacity: 1;
}

.kelsey_styles .bike-stolen {
  opacity: 0;
}

.kelsey_styles .question-text {
  flex: 0 0 auto;
}

.kelsey_styles .question-text h2 {
  font-size: 2.8rem;
  color: var(--redesign-blue-500);
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 650px;
  text-align: center;
}

/* Recovery Process */
.kelsey_styles .recovery-process {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding-top: 2.5rem;
}

.kelsey_styles .crank-animation-container {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-start;
}

.kelsey_styles .crank-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
}

.kelsey_styles .step-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.kelsey_styles .bike-crank {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.5s ease;
}

.kelsey_styles .steps-content {
  flex: 1;
}

.kelsey_styles .step-text h3 {
  color: var(--redesign-gray-800);
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.kelsey_styles .step-text h3 .step-number {
  font-size: 1.5rem;
  display: block;
}

.kelsey_styles .step-text h3 .step-title {
  font-size: 1.1rem;
  display: block;
}

.kelsey_styles .step-text p {
  font-size: 1.1rem;
  color: var(--redesign-gray-500);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.kelsey_styles .step-navigation {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kelsey_styles .step-arrow {
  background-color: var(--redesign-blue-500);
  color: white;
  border: none;
  border-radius: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.kelsey_styles .step-arrow:hover {
  background-color: var(--redesign-purple-500);
  transform: scale(1.1);
}

.kelsey_styles .step-indicator {
  font-size: 1rem;
  color: var(--redesign-gray-800);
  font-weight: 500;
}

/* Responsive for stolen question section */
@media (max-width: 768px) {
  .kelsey_styles .stolen-question-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .kelsey_styles .bike-transition {
    width: 120px;
    height: 120px;
  }

  .kelsey_styles .question-text h2 {
    font-size: 1.8rem;
  }

  .kelsey_styles .recovery-process {
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem auto 0;
    padding-top: 2rem;
  }

  .kelsey_styles .crank-wrapper {
    width: 200px;
    height: 200px;
  }

  .kelsey_styles .stolen-question-section {
    padding: 2rem 0 1.5rem;
  }
}
.kelsey_landing-page-body .primary-header-nav {
  margin-bottom: 0;
}
.kelsey_landing-page-body .primary-footer {
  margin-top: 0;
}

.kelsey_landing-page-body h2 {
  text-transform: none;
}

/* Landing Page Hero Section */
.kelsey_styles .le-hero-section {
  background-color: var(--redesign-blue-800);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  clip-path: inset(-100px 0 0 0);
  padding: 3rem 0;
}

.kelsey_styles .le-bike-tiles-grid {
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0;
  z-index: 1;
  opacity: 0.3;
  will-change: transform;
}

.kelsey_styles .le-bike-tile {
  width: 130px;
  height: 130px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.kelsey_styles .le-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  color: white;
}

.kelsey_styles .le-hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.2;
}

.kelsey_styles .le-hero-tagline {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.kelsey_styles .le-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.kelsey_styles .le-btn-primary,
.kelsey_styles .le-btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kelsey_styles .le-btn-primary {
  background: #ffd660;
  color: var(--redesign-blue-800);
  border: 2px solid #ffd660;
}

.kelsey_styles .le-btn-primary:hover {
  background: #ffcc33;
  border-color: #ffcc33;
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--redesign-blue-800);
}

.kelsey_styles .le-btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.kelsey_styles .le-btn-secondary:hover {
  background-color: white;
  color: var(--redesign-blue-500);
  transform: translateY(-2px);
}

.kelsey_styles .le-hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.kelsey_styles .le-stat-item {
  text-align: center;
}

.kelsey_styles .le-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.kelsey_styles .le-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 150px;
}

/* Partners Carousel Section */
.kelsey_styles .le-municipalities-section {
  background-color: white;
  padding: 3rem 0;
  overflow: hidden;
}

.kelsey_styles .le-municipalities-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--redesign-gray-800);
}

.kelsey_styles .le-partners-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.kelsey_styles .le-partners-grid {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: kelsey_scroll_partners 30s linear infinite;
  width: max-content;
}

.kelsey_styles .le-partners-grid:hover {
  animation-play-state: paused;
}

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

.kelsey_styles .le-partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 150px;
}

.kelsey_styles .le-partner-logo img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.kelsey_styles .le-partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.kelsey_styles .le-partner-logo span {
  font-size: 0.9rem;
  color: var(--redesign-gray-500);
  font-weight: 500;
}

/* Features Section */
.kelsey_styles .le-features-section {
  background-color: var(--redesign-gray-100);
  padding: 4rem 0;
}

.kelsey_styles .le-features-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--redesign-gray-800);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.kelsey_styles .le-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.kelsey_styles .le-feature-block {
  background-color: white;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kelsey_styles .le-feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.kelsey_styles .le-feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kelsey_styles .le-feature-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.kelsey_styles .le-feature-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--redesign-gray-800);
}

.kelsey_styles .le-feature-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--redesign-gray-500);
}

/* Tabbed Widget */
.kelsey_styles .le-tabbed-widget {
  max-width: 1100px;
  margin: 0 auto;
  background-color: white;
}

.kelsey_styles .le-tab-buttons {
  display: flex;
  border-bottom: 3px solid #e0e0e0;
}

.kelsey_styles .le-tab-button {
  flex: 1;
  padding: 1.5rem 2rem;
  background-color: #f8f8f8;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--redesign-gray-500);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}

.kelsey_styles .le-tab-button:hover {
  color: var(--redesign-blue-500);
  background-color: transparent;
}

.kelsey_styles .le-tab-button.active {
  color: var(--redesign-blue-500);
  border-bottom-color: var(--redesign-blue-500);
  background-color: transparent;
}

.kelsey_styles .le-tab-content {
  padding: 3rem 2.5rem;
}

.kelsey_styles .le-tab-panel {
  display: none;
}

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

.kelsey_styles .le-tab-panel-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.kelsey_styles .le-tab-icon {
  flex: 0 0 auto;
}

.kelsey_styles .le-tab-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.kelsey_styles .le-tab-text {
  flex: 1;
}

.kelsey_styles .le-tab-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--redesign-gray-800);
  margin-bottom: 1rem;
}

.kelsey_styles .le-tab-text ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.kelsey_styles .le-tab-text ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.kelsey_styles .le-tab-text ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--redesign-blue-500);
  font-size: 1.5rem;
  line-height: 1.2;
}

/* Tools Overview Section */
.kelsey_styles .le-tools-section {
  background-color: white;
  padding: 3rem 0;
}

.kelsey_styles .le-tools-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--redesign-gray-800);
}

.kelsey_styles .le-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.kelsey_styles .le-tool-item {
  text-align: center;
  padding: 0.75rem;
}

.kelsey_styles .le-tool-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.kelsey_styles .le-tool-item h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--redesign-gray-800);
  font-weight: 600;
}

.kelsey_styles .le-tool-details p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--redesign-gray-500);
  margin-top: 0.5rem;
}

/* Testimonials Section */
.kelsey_styles .le-testimonials-section {
  background-color: var(--redesign-gray-100);
  padding: 4rem 0;
}

.kelsey_styles .le-testimonials-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--redesign-gray-800);
}

.kelsey_styles .le-testimonials-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.kelsey_styles .le-testimonials-grid {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.kelsey_styles .le-testimonial {
  padding: 0;
  border-left: none;
  min-width: 100%;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  display: none;
  overflow: hidden;
  min-height: 280px;
}

.kelsey_styles .le-testimonial.active {
  display: block;
}

.kelsey_styles .le-testimonial-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: white;
  padding: 2rem;
  border-left: 4px solid var(--redesign-purple-500);
  min-height: 280px;
}

.kelsey_styles .le-testimonial-text {
  flex: 1;
}

.kelsey_styles .le-testimonial-image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kelsey_styles .le-testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kelsey_styles .le-testimonial-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--redesign-gray-800);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.kelsey_styles .le-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.kelsey_styles .le-testimonial-author strong {
  color: var(--redesign-gray-800);
  font-size: 1rem;
}

.kelsey_styles .le-testimonial-author span {
  color: var(--redesign-gray-500);
  font-size: 0.9rem;
}

.kelsey_styles .le-testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.kelsey_styles .le-testimonial-arrow {
  background-color: var(--redesign-purple-500);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.kelsey_styles .le-testimonial-arrow:hover {
  background-color: var(--redesign-blue-500);
  transform: scale(1.1);
}

.kelsey_styles .le-testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.kelsey_styles .le-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.kelsey_styles .le-testimonial-dot.active {
  background-color: var(--redesign-purple-500);
  width: 30px;
  border-radius: 5px;
}

/* Final CTA Section */
.kelsey_styles .le-cta-section {
  background: linear-gradient(135deg, var(--redesign-purple-500) 0%, var(--redesign-blue-500) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.kelsey_styles .le-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.kelsey_styles .le-cta-subtitle {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 1.5rem;
}

.kelsey_styles .le-nonprofit-message {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.kelsey_styles .le-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.kelsey_styles .le-cta-section .le-btn-primary {
  background: white;
  color: var(--redesign-purple-500);
  border: 2px solid white;
}

.kelsey_styles .le-cta-section .le-btn-primary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: var(--redesign-purple-500);
}

/* Landing Page Responsive */
@media (max-width: 768px) {
  .kelsey_styles .le-hero-section h1 {
    font-size: 2.2rem;
  }

  .kelsey_styles .le-hero-tagline {
    font-size: 1rem;
  }

  .kelsey_styles .le-hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .kelsey_styles .le-hero-stats {
    gap: 1.5rem;
  }

  .kelsey_styles .le-stat-number {
    font-size: 2rem;
  }

  .kelsey_styles .le-features-grid {
    grid-template-columns: 1fr;
  }

  .kelsey_styles .le-tab-button {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .kelsey_styles .le-tab-panel-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .kelsey_styles .le-tab-icon img {
    width: 120px;
    height: 120px;
  }

  .kelsey_styles .le-tab-content {
    padding: 2rem 1.5rem;
  }

  .kelsey_styles .le-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .kelsey_styles .le-testimonial-content {
    flex-direction: column;
    gap: 1.5rem;
    min-height: auto;
  }

  .kelsey_styles .le-testimonial-image {
    width: 150px;
    height: 150px;
  }

  .kelsey_styles .le-cta-section h2 {
    font-size: 1.8rem;
  }

  .kelsey_styles .le-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .kelsey_styles .le-hero-section h1 {
    font-size: 1.8rem;
  }

  .kelsey_styles .le-tab-button {
    font-size: 0.75rem;
    padding: 0.75rem 0.5rem;
    letter-spacing: 0;
  }

  .kelsey_styles .le-tools-grid {
    grid-template-columns: 1fr;
  }
}
