/* BabyBites Website Styles */
/* Color scheme from the BabyBites app */

:root {
  --primary-100: #e6f6ff;
  --primary-200: #73c9ff;
  --primary-300: #73c9ff;
  --primary-400: #3fb0ff;
  --primary-500: #2196f3;
  --primary-600: #067dd0;
  --primary-700: #0062a1;
  --primary-800: #004772;
  --primary-900: #002a42;

  --neutral-100: #f9f9f9;
  --neutral-200: #dedede;
  --neutral-300: #c7c7c7;
  --neutral-400: #b0b0b0;
  --neutral-500: #999999;
  --neutral-600: #7d7d7d;
  --neutral-700: #606060;
  --neutral-800: #444444;
  --neutral-900: #282828;

  --orange-100: #ffefe6;
  --orange-500: #fd6d00;
  --orange-600: #d05500;

  --green-100: #e8f5e9;
  --green-500: #5bb211;
  --green-600: #4a9e0d;

  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--neutral-800);
  line-height: 1.6;
  background-color: var(--white);
}

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

/* Logo */
.logo {
  font-family: "Pattaya", cursive;
  font-size: 2rem;
  color: var(--neutral-800);
  text-decoration: none;
}

.logo span {
  color: var(--primary-500);
}

.logo-small {
  font-family: "Pattaya", cursive;
  font-size: 1.25rem;
  color: var(--neutral-800);
}

.logo-small span {
  color: var(--primary-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-500);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary-500);
  border: 2px solid var(--primary-500);
}

.btn-outline:hover {
  background: var(--primary-100);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--neutral-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-500);
}

.nav-cta {
  display: flex;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--neutral-800);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(
    135deg,
    var(--primary-100) 0%,
    var(--white) 50%,
    var(--orange-100) 100%
  );
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--neutral-900);
}

.highlight {
  color: var(--primary-500);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-600);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-500);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

/* Phone Mockup */
.hero-image {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--neutral-900);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 32px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.app-preview {
  padding: 20px;
}

.app-header {
  text-align: center;
  padding: 20px 0 30px;
}

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

.food-item {
  aspect-ratio: 1;
  background: var(--neutral-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--neutral-400);
  transition: all 0.3s ease;
}

.food-item.introduced {
  background: var(--green-100);
  color: var(--green-500);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--neutral-900);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--neutral-600);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-100);
  color: var(--primary-500);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-icon.warning {
  background: var(--orange-100);
  color: var(--orange-500);
}

.feature-icon.success {
  background: var(--green-100);
  color: var(--green-500);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--neutral-900);
}

.feature-card p {
  color: var(--neutral-600);
  font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: var(--neutral-100);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--primary-300);
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--neutral-900);
}

.step-content p {
  color: var(--neutral-600);
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--neutral-200);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary-500);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-500);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--neutral-200);
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--neutral-900);
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-600);
  margin-top: 8px;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1;
}

.price-description {
  color: var(--neutral-500);
  font-size: 0.95rem;
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--neutral-100);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  width: 20px;
  text-align: center;
}

.pricing-features li .fa-check {
  color: var(--green-500);
}

.pricing-features li .fa-times {
  color: var(--neutral-400);
}

.pricing-features li.disabled {
  color: var(--neutral-400);
}

/* Download Section */
.download {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--primary-500) 0%,
    var(--primary-700) 100%
  );
  color: var(--white);
}

.download-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.download-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.download-content .highlight {
  color: var(--primary-200);
}

.download-content p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--neutral-900);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.store-btn:hover {
  background: var(--neutral-800);
  transform: translateY(-2px);
}

.store-btn i {
  font-size: 2rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text .small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.store-text .big {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-300);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--neutral-700);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer-brand .logo {
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  color: var(--neutral-400);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--neutral-400);
  font-size: 1.25rem;
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--primary-300);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

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

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .download-content h2 {
    font-size: 2rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 1.875rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }

  .pricing-card {
    padding: 24px;
  }

  .amount {
    font-size: 3rem;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .team-card.founder {
    flex-direction: column;
    text-align: center;
  }

  .team-photo {
    margin: 0 auto 0;
  }

  .team-credentials {
    justify-content: center;
  }
}

/* Target Market Statement */
.target-market {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-100);
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--neutral-700);
}

.target-market i {
  color: var(--primary-500);
  font-size: 1.1rem;
}

/* App Demo Section */
.app-demo {
  padding: 100px 0;
  background: var(--neutral-100);
}

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

.screenshot-item {
  text-align: center;
}

.screenshot-frame {
  background: var(--white);
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
  aspect-ratio: 430/932;
  overflow: hidden;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-100) 0%,
    var(--primary-200) 100%
  );
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--primary-600);
}

.screenshot-placeholder i {
  font-size: 3rem;
}

.screenshot-placeholder span {
  font-weight: 600;
  font-size: 0.9rem;
}

.screenshot-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--neutral-900);
}

.screenshot-item p {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* Updated How It Works - 3 steps */
.steps-3 {
  grid-template-columns: repeat(3, 1fr);
}

.steps-3 .step {
  text-align: left;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.steps-3 .step-number {
  margin: 0 0 20px 0;
}

.steps-3 .step-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.step-details {
  list-style: none;
  margin-top: 16px;
}

.step-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--neutral-700);
}

.step-details li i {
  color: var(--green-500);
  font-size: 0.8rem;
}

/* About Us Section */
.about {
  padding: 100px 0;
  background: var(--white);
}

.team-grid {
  max-width: 900px;
  margin: 0 auto 60px;
}

.team-card {
  background: var(--neutral-100);
  border-radius: 24px;
  padding: 40px;
}

.team-card.founder {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.team-photo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

.team-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-placeholder {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    var(--primary-200) 0%,
    var(--primary-400) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
}

.team-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.team-role {
  color: var(--primary-500);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  color: var(--neutral-600);
  margin-bottom: 16px;
  line-height: 1.7;
}

.team-bio:last-of-type {
  font-style: italic;
  color: var(--neutral-500);
  border-left: 3px solid var(--primary-300);
  padding-left: 16px;
}

.team-credentials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.team-credentials span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.team-credentials i {
  color: var(--primary-500);
}

/* Contributors Section */
.contributors {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contributors h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--neutral-900);
}

.contributors > p {
  color: var(--neutral-600);
  margin-bottom: 32px;
}

.contributor-list {
  display: grid;
  gap: 24px;
}

.contributor-item {
  display: flex;
  gap: 20px;
  text-align: left;
  background: var(--neutral-100);
  padding: 24px;
  border-radius: 16px;
}

.contributor-item > i {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  color: var(--primary-500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contributor-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.contributor-item p {
  color: var(--neutral-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-3 {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .steps-3 .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .team-card.founder {
    flex-direction: column;
    text-align: center;
  }

  .team-photo {
    margin: 0 auto 0;
  }

  .team-bio:last-of-type {
    border-left: none;
    border-top: 3px solid var(--primary-300);
    padding-left: 0;
    padding-top: 16px;
  }

  .team-credentials {
    justify-content: center;
  }

  .contributor-item {
    flex-direction: column;
    text-align: center;
  }

  .contributor-item > i {
    margin: 0 auto;
  }

  .target-market {
    flex-direction: column;
    text-align: center;
  }
}

/* Hero Video Styles */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--neutral-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-100);
  color: var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--neutral-900);
  font-size: 1rem;
}

.author-info span {
  color: var(--neutral-500);
  font-size: 0.875rem;
}

/* Team Grid 2 columns */
.team-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 100%;
}

.team-grid-2 .team-card.founder {
  flex-direction: column;
  text-align: center;
}

.team-grid-2 .team-photo {
  margin: 0 auto 0;
}

.team-grid-2 .team-bio.quote {
  font-style: italic;
  color: var(--neutral-500);
  border-left: 3px solid var(--primary-300);
  padding-left: 16px;
  text-align: left;
}

.team-grid-2 .team-credentials {
  justify-content: center;
}

/* Responsive for testimonials and team grid */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .team-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .team-grid-2 .team-bio.quote {
    border-left: none;
    border-top: 3px solid var(--primary-300);
    padding-left: 0;
    padding-top: 16px;
    text-align: center;
  }
}
