/* 6 Seeds Design System - CSS Reset & Base Styles */

/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
}

/* Global link color - all links orange */
a {
  color: var(--seeds-orange);
  text-decoration: none;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .seeds-btn-primary,
  .seeds-btn-secondary,
  .seeds-card-shadow,
  .seeds-image-container img {
    transition: none !important;
    transform: none !important;
  }
}

/* Announcement Banner */
.seeds-announcement-banner {
  background: #171728;         /* fallback */
  background: var(--seeds-dark-gradient);
  color: white;
  position: relative;
  z-index: 1000;
}

.seeds-announcement-cta:hover {
  background-color: #e67e22 !important; /* Darker orange on hover */
}

/* Mobile responsive for announcement banner */
@media (max-width: 768px) {
  .seeds-announcement-banner .seeds-container {
    flex-direction: column !important;
    gap: 0.75rem !important;
    text-align: center;
  }
  
  .seeds-announcement-banner span:last-of-type {
    font-size: 0.85rem !important;
  }
}

/* Utility Classes */
.seeds-shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hover State Utilities */
.seeds-hover-dark-blue:hover {
  background: #161625;
  color: white;
}

.seeds-hover-pill:hover {
  background: #161625;
  color: white;
}

/* Content Link Styles - 6 Seeds Orange */
.seeds-text-primary a,
.seeds-text-small a,
.seeds-mb-md a,
p a {
  color: var(--seeds-orange);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.2s ease;
}

.seeds-text-primary a:hover,
.seeds-text-small a:hover,
.seeds-mb-md a:hover,
p a:hover {
  border-bottom-color: var(--seeds-orange);
}

/* Navigation System */
.seeds-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.seeds-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.seeds-nav-item {
  position: relative;
}

.seeds-nav-link {
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;             /* 16px */
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.seeds-nav-link:hover {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-nav-link.seeds-nav-active {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  font-weight: 700;
}

.seeds-nav-link.seeds-nav-active::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ffab40;   /* fallback */
  background-color: var(--seeds-orange);
}

/* Dropdown Menu */
.seeds-dropdown {
  position: relative;
}

.seeds-dropdown-toggle::after {
  content: '▼';
  font-size: 0.75rem;
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  transition: transform 0.3s ease, color 0.3s ease;
}

.seeds-dropdown-toggle:hover::after {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

/* Non-clickable dropdown label (no href) */
.seeds-dropdown-label {
  cursor: default;
}

.seeds-dropdown.seeds-dropdown-open .seeds-dropdown-toggle::after {
  transform: rotate(180deg);
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.seeds-dropdown:hover .seeds-dropdown-menu,
.seeds-dropdown.seeds-dropdown-open .seeds-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.seeds-dropdown:hover .seeds-dropdown-toggle::after {
  transform: rotate(180deg);
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-dropdown-item {
  padding: 0.75rem 1.25rem;
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  text-decoration: none;
  display: block;
  font-weight: 500;
  font-size: 0.875rem;         /* 14px */
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.seeds-dropdown-item:hover {
  background-color: #eee6dc;   /* fallback */
  background-color: var(--seeds-beige);
  border-left-color: #ffab40;  /* fallback */
  border-left-color: var(--seeds-orange);
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
}

.seeds-dropdown-item.seeds-nav-active {
  background-color: #eee6dc;   /* fallback */
  background-color: var(--seeds-beige);
  border-left-color: #ffab40;  /* fallback */
  border-left-color: var(--seeds-orange);
  font-weight: 600;
}

/* Mobile Navigation - Hamburger Menu */
.seeds-hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  gap: 0.25rem;
}

.seeds-hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #363166;   /* fallback */
  background-color: var(--seeds-dark);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.seeds-hamburger.seeds-hamburger-open .seeds-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.seeds-hamburger.seeds-hamburger-open .seeds-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.seeds-mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 999;
  margin-top: 1rem;
  padding: 1rem 0;
}

.seeds-mobile-menu.seeds-mobile-menu-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.seeds-mobile-nav-item {
  padding: 0.75rem 1.5rem;
}

.seeds-mobile-nav-link {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;             /* 16px */
  display: block;
  transition: color 0.3s ease;
}

.seeds-mobile-nav-link:hover,
.seeds-mobile-nav-link.seeds-nav-active {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-mobile-dropdown-title {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  font-weight: 700;
  font-size: 1rem;             /* 16px */
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.seeds-mobile-dropdown-items {
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.seeds-mobile-dropdown-item {
  padding: 0.5rem 0;
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  text-decoration: none;
  font-size: 0.875rem;         /* 14px */
  display: block;
  transition: color 0.3s ease;
}

.seeds-mobile-dropdown-item:hover,
.seeds-mobile-dropdown-item.seeds-nav-active {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

/* Navigation Responsive Design */
@media (max-width: 768px) {
  .seeds-hamburger {
    display: flex;
  }
  
  .seeds-nav-list {
    display: none;
  }
}

/* Services Page Styles */
.seeds-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

/* Specific 3-column grid for PR impact panels */
.seeds-services-grid-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
}

@media (max-width: 1024px) {
  .seeds-services-grid-three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .seeds-services-grid-three-col {
    grid-template-columns: 1fr;
  }
}

.seeds-service-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(113, 123, 159, 0.1);
}



.seeds-service-content {
  padding: 1.5rem;
}

.seeds-service-cta {
  margin-top: 1rem;
}

.seeds-cta-section {
  background: transparent;
  padding: 3rem 0;               /* Consistent with section spacing */
  margin-top: 2rem;              /* Reduced from 3rem to match system */
}

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

/* Contact Page Styling */
.seeds-contact-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}



.seeds-input {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  transition: border-color 0.3s ease;
}

.seeds-input:focus {
  outline: none;
  border-color: var(--seeds-orange) !important;
  box-shadow: 0 0 0 3px rgba(255, 171, 64, 0.1);
}

.seeds-map-container {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Video Embeds */
.seeds-videos-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.seeds-video-embed {
  width: 100%;
}

@media (max-width: 768px) {
  .seeds-videos-container {
    gap: 1.5rem;
  }
}

/* Services List Styling */
.seeds-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #F9F5F1;           /* fallback */
  background: var(--seeds-beige-gradient);
  border-radius: 0.75rem;
}

.seeds-service-item {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0;
}

/* Services Grid Responsive Design */
@media (max-width: 768px) {
  .seeds-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .seeds-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .seeds-services-list {
    grid-template-columns: 1fr;
  }
}

/* Typography System */
.seeds-h1-hero {
  font-size: 3.5rem;           /* 56px */
  font-weight: 800;
  line-height: 1.3;            /* Increased from 1.1 for better readability */
  margin-bottom: 1.5rem;
  color: white;                /* White text for dark hero sections */
}

.seeds-h1 {
  font-size: 3rem;             /* 48px */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
}

/* Hero section styling for resource pages */
.seeds-hero-section {
  background: #171728;   /* fallback - using dark blue */
  background: var(--seeds-dark-gradient);
  padding: 6rem 0 2rem 0;     /* Same generous spacing as main hero */
  color: white;
}

/* Hero variants for dark backgrounds */
.seeds-hero .seeds-h1,
.seeds-hero-section .seeds-h1 {
  color: white;
}

/* Gradient text effects for hero emphasis */
.seeds-gradient-text {
  background: linear-gradient(135deg, #6da4f5 0%, #86cdeb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Light blue gradient text (same as above for backwards compatibility) */
.seeds-gradient-text-light {
  background: linear-gradient(135deg, #6da4f5 0%, #86cdeb 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Dark blue gradient text */
.seeds-gradient-text-dark {
  background: linear-gradient(135deg, #363166 0%, #2a2757 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Hero CTA buttons - white on blue for dark backgrounds */
.seeds-btn-hero-primary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.875rem 2rem;
  border-radius: 2rem;         /* Full pill shape */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.seeds-btn-hero-primary:hover {
  background: white;
  color: #161625;
}

.seeds-btn-hero-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.875rem 2rem;
  border-radius: 2rem;         /* Full pill shape */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.seeds-btn-hero-secondary:hover {
  background: white;
  color: #161625;
}

.seeds-hero .seeds-text-intro-panel,
.seeds-hero-section .seeds-text-intro-panel {
  color: var(--seeds-footer-text);  /* Using same light color as footer text */
}

.seeds-h2 {
  font-size: 2.25rem;          /* 36px */
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
}

.seeds-h3 {
  font-size: 1.5rem;           /* 24px */
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
}

.seeds-text-intro-panel {
  font-size: 1.375rem;         /* 22px - for intro/summary sections */
  color: #4d4d4d;              /* softer dark grey for readability */
  line-height: 1.75;
  white-space: pre-line;       /* Preserves line breaks from \n */
}

.seeds-text-primary {
  font-size: 1.125rem;         /* 18px - main body text */
  color: #4d4d4d;              /* softer dark grey for readability */
  line-height: 1.5;
}

.seeds-text-secondary {
  font-size: 1rem;             /* 16px */
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  line-height: 1.5;
}

.seeds-text-small {
  font-size: 0.875rem;         /* 14px */
  color: #363166;              /* fallback - dark blue for readability */
  color: var(--seeds-dark);
  line-height: 1.4;
}

/* Button System - Dark Blue Pills */
.seeds-btn-primary {
  background: transparent;
  color: #161625;
  border: 2px solid #161625;
  padding: 0.875rem 2rem;
  border-radius: 2rem;         /* Full pill shape */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.seeds-btn-primary:hover {
  background: #161625;
  color: white;
}

.seeds-btn-primary:focus {
  outline: 2px solid #161625;
  outline-offset: 2px;
}

.seeds-btn-secondary {
  background: transparent;
  color: #161625;
  border: 2px solid #161625;
  padding: 0.875rem 2rem;
  border-radius: 2rem;         /* Full pill shape */
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.seeds-btn-secondary:hover {
  background: #161625;
  color: white;
}

.seeds-btn-secondary:focus {
  outline: 2px solid #161625;
  outline-offset: 2px;
}

/* Layout & Component System */
.seeds-header {
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  height: 5rem;                /* 80px total height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
}

/* Fix mobile menu positioning by ensuring header container is positioned */
.seeds-header .seeds-container {
  position: relative;
}

.seeds-logo {
  height: 3.5rem;              /* 56px height */
}

.seeds-footer {
  background: #171728;         /* fallback */
  background: var(--seeds-dark-gradient);
  color: white;
  padding: 3rem 0 2rem 0;
}

.seeds-footer-text {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  margin: 0;
}

/* Section Shadows */
.seeds-section-shadow {
  box-shadow: 0 4px 6px rgba(45, 52, 54, 0.1);
}

.seeds-card-shadow {
  box-shadow: 0 4px 6px rgba(45, 52, 54, 0.07), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}



/* Page Sections - Systematic Spacing */
.seeds-hero {
  background: #171728;   /* fallback - using dark blue */
  background: var(--seeds-dark-gradient);
  padding: 6rem 0 2rem 0;     /* Generous top space, reduced bottom space */
  color: white;
}

.seeds-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .seeds-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.seeds-client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seeds-client-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(45, 52, 54, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}



/* Mobile-specific client grid layout */
@media (max-width: 768px) {
  .seeds-client-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .seeds-client-card {
    padding: 1rem;
    min-height: 80px;
  }
}

/* Podcast Section Styles */
.seeds-podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seeds-podcast-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 4px rgba(45, 52, 54, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}



/* Mobile-specific podcast grid layout */
@media (max-width: 768px) {
  .seeds-podcast-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .seeds-podcast-card {
    padding: 1.25rem;
  }
}

.seeds-newsletter-section {
  background: #F9F5F1;   /* fallback - beige background */
  background: var(--seeds-beige-gradient);
  padding: 2rem 0 1.5rem 0;    /* Even less bottom padding */
}

.seeds-newsletter-embed {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Image Guidelines */
.seeds-image-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 52, 54, 0.15);
}

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

/* Image Tooltip */
.seeds-image-tooltip {
  position: relative;
}

.seeds-tooltip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #363166;     /* dark blue background */
  color: #eee6dc;                /* beige text color */
  padding: 1rem;
  font-size: 0.875rem;           /* 14px */
  line-height: 1.4;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  pointer-events: none;
}

.seeds-image-tooltip:hover .seeds-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* CSS Utility Classes */
.seeds-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.seeds-section {
  padding: 3rem 0;           /* Reduced from 4rem for better spacing */
}

.seeds-section-sm {
  padding: 2rem 0;
}

/* Systematic spacing for adjacent sections */
.seeds-hero + .seeds-section {
  padding-top: 1rem;         /* First section after hero gets less top padding */
}

.seeds-section + .seeds-section {
  padding-top: 2rem;         /* Subsequent sections get moderate top padding */
}

.seeds-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.seeds-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .seeds-grid-2,
  .seeds-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Spacing Utilities */
.seeds-mb-sm { margin-bottom: 0.5rem; }
.seeds-mb-md { margin-bottom: 1rem; }
.seeds-mb-lg { margin-bottom: 1.5rem; }
.seeds-mb-xl { margin-bottom: 2rem; }

.seeds-mt-sm { margin-top: 0.5rem; }
.seeds-mt-md { margin-top: 1rem; }
.seeds-mt-lg { margin-top: 1.5rem; }
.seeds-mt-xl { margin-top: 2rem; }

/* Interactive Links */
a:hover {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

/* Media Coverage Section - Logo Panels */
.media-coverage-section {
  background: #f8f9fa;
  padding: 4rem 0;
  text-align: center;
}

.media-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: center;
  justify-items: center;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-panel {
  width: 100%;
  max-width: 200px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.logo-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.logo-img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Responsive adjustments for media logos - Always 4 columns */
@media (max-width: 900px) {
  .media-logos {
    gap: 1rem;
  }
  
  .logo-panel {
    min-height: 80px;
    padding: 1rem;
  }
  
  .logo-img {
    max-height: 45px;
  }
}

@media (max-width: 600px) {
  .media-logos {
    gap: 0.875rem;
  }
  
  .logo-panel {
    min-height: 75px;
    padding: 0.875rem;
  }
  
  .logo-img {
    max-height: 40px;
  }
}

@media (max-width: 480px) {
  .media-coverage-section {
    padding: 3rem 0;
  }
  
  .media-logos {
    gap: 0.5rem;
  }
  
  .logo-panel {
    min-height: 70px;
    padding: 0.75rem;
  }
  
  .logo-img {
    max-height: 35px;
  }
}

/* Footer Styles */
.seeds-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.seeds-footer-section {
  display: flex;
  flex-direction: column;
}

.seeds-footer-heading {
  font-size: 1.125rem;         /* 18px */
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.seeds-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seeds-footer-links li {
  margin-bottom: 0.75rem;
}

.seeds-footer-link {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  text-decoration: none;
  font-size: 0.875rem;         /* 14px */
  line-height: 1.4;
  transition: color 0.3s ease;
}

.seeds-footer-link:hover {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

.seeds-footer-contact {
  margin-top: 0;
}

.seeds-footer-address {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  font-size: 0.875rem;         /* 14px */
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
  white-space: pre-line;       /* Preserves line breaks */
}

.seeds-footer-location {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  font-size: 0.875rem;         /* 14px */
  line-height: 1.4;
  font-style: italic;
  margin-top: 1rem;
}

.seeds-footer-company {
  grid-column: span 1;
}

.seeds-footer-description {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  font-size: 0.875rem;         /* 14px */
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  white-space: pre-line;       /* Preserves line breaks */
}

.seeds-footer-social {
  display: flex;
  gap: 1rem;
}

.seeds-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;               /* 40px */
  height: 2.5rem;              /* 40px */
  background-color: rgba(255, 171, 64, 0.1);
  border-radius: 0.5rem;
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
  text-decoration: none;
  transition: all 0.3s ease;
}

.seeds-footer-social-link:hover {
  background-color: #ffab40;   /* fallback */
  background-color: var(--seeds-orange);
  color: white;
  transform: translateY(-2px);
}

.seeds-footer-social-link i {
  font-size: 1.125rem;         /* 18px */
}

.seeds-footer-bottom {
  border-top: 1px solid rgba(238, 230, 220, 0.2);
  padding-top: 2rem;
}

.seeds-footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.seeds-footer-copyright {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  font-size: 0.875rem;         /* 14px */
  margin: 0;
}

.seeds-footer-legal-links {
  display: flex;
  gap: 2rem;
}

.seeds-footer-legal-link {
  color: #eee6dc;              /* fallback */
  color: var(--seeds-footer-text);
  text-decoration: none;
  font-size: 0.875rem;         /* 14px */
  transition: color 0.3s ease;
}

.seeds-footer-legal-link:hover {
  color: #ffab40;              /* fallback */
  color: var(--seeds-orange);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
  .seeds-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .seeds-footer-company {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .seeds-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .seeds-footer-company {
    grid-column: span 1;
  }
  
  .seeds-footer-legal {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .seeds-footer-legal-links {
    justify-content: center;
  }
}

/* Data and Expertise Grid Layouts */
.seeds-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* Testimonials Styles */
.seeds-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.seeds-testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(54, 49, 102, 0.08);
}



.seeds-testimonial-quote-icon {
  margin-bottom: 1rem;
}

.seeds-testimonial-headline {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  font-size: 1.125rem;         /* 18px */
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 1rem 0;
}

.seeds-testimonial-quote {
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  font-size: 1rem;             /* 16px */
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  border-left: 3px solid #ffab40;
  border-left: 3px solid var(--seeds-orange);
  padding-left: 1rem;
  quotes: none;                /* Remove default quote marks */
}

/* Remove any default quotes from blockquote elements */
.seeds-testimonial-quote::before,
.seeds-testimonial-quote::after {
  content: "";
  content: none;
}

.seeds-testimonial-author {
  border-top: 1px solid rgba(54, 49, 102, 0.1);
  padding-top: 1rem;
}

.seeds-testimonial-author-name {
  color: #363166;              /* fallback */
  color: var(--seeds-dark);
  font-size: 0.9375rem;        /* 15px */
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.seeds-testimonial-author-title {
  color: #717b9f;              /* fallback */
  color: var(--seeds-light);
  font-size: 0.875rem;         /* 14px */
  line-height: 1.4;
}

@media (max-width: 768px) {
  .seeds-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .seeds-testimonial-card {
    padding: 1.5rem;
  }
}

/* ===== DISTRIBUTOR DIRECTORY STYLES ===== */

/* Directory Controls */
.seeds-directory-controls {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.seeds-directory-search {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.seeds-directory-search .seeds-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.seeds-directory-search .seeds-input:focus {
  outline: none;
  border-color: var(--seeds-orange);
  box-shadow: 0 0 0 2px rgba(255, 171, 64, 0.2);
}

.seeds-directory-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.seeds-select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}

.seeds-select:focus {
  outline: none;
  border-color: var(--seeds-orange);
  box-shadow: 0 0 0 2px rgba(255, 171, 64, 0.2);
}

/* Results Info */
.seeds-directory-info {
  margin-bottom: 1rem;
}

.seeds-text-secondary {
  color: var(--seeds-light);
  font-size: 0.875rem;
}

/* Directory Table */
.seeds-directory-table-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

.seeds-directory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.seeds-directory-table th,
.seeds-directory-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.seeds-directory-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: var(--seeds-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}

.seeds-directory-table th.sortable {
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.seeds-directory-table th.sortable:hover {
  background: #e9ecef;
}

.seeds-directory-table th.sortable i {
  margin-left: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.seeds-directory-table th.sortable:hover i {
  opacity: 1;
}

.seeds-directory-table th.sort-asc i,
.seeds-directory-table th.sort-desc i {
  opacity: 1;
  color: var(--seeds-orange);
}

.seeds-directory-table tbody tr:hover {
  background: #f8f9fa;
}

.seeds-distributor-name {
  min-width: 200px;
}

.seeds-distributor-name strong {
  color: var(--seeds-dark);
}

.seeds-distributor-description {
  max-width: 300px;
  line-height: 1.4;
  color: var(--seeds-light);
}

.seeds-distributor-categories {
  min-width: 200px;
}

.seeds-category-tag {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  margin: 0.125rem;
  white-space: nowrap;
}

.seeds-distributor-country {
  min-width: 100px;
  font-weight: 500;
}

.seeds-distributor-states {
  min-width: 150px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
}

/* Pagination */
.seeds-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.seeds-pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--seeds-orange);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.seeds-pagination-btn:hover {
  background: #ff9800;
  transform: translateY(-1px);
}

.seeds-pagination-info {
  font-weight: 500;
  color: var(--seeds-dark);
}



/* Breadcrumb */
.seeds-breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.seeds-breadcrumb-link {
  color: var(--seeds-orange);
  text-decoration: none;
}

.seeds-breadcrumb-link:hover {
  text-decoration: underline;
}

.seeds-breadcrumb-separator {
  margin: 0 0.5rem;
  color: var(--seeds-light);
}

.seeds-breadcrumb-current {
  color: var(--seeds-dark);
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .seeds-directory-search {
    flex-direction: column;
  }
  
  .seeds-directory-filters {
    flex-direction: column;
  }
  
  .seeds-select {
    width: 100%;
  }
  
  .seeds-directory-table-container {
    overflow-x: auto;
  }
  
  .seeds-directory-table {
    min-width: 800px;
  }
  
  .seeds-directory-table th,
  .seeds-directory-table td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .seeds-distributor-description {
    max-width: 250px;
    font-size: 0.75rem;
  }
  
  .seeds-category-tag {
    font-size: 0.7rem;
    margin: 0.1rem;
  }
  
  .seeds-pagination {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .seeds-pagination-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .seeds-directory-controls {
    padding: 1rem;
  }
  
  .seeds-directory-table th,
  .seeds-directory-table td {
    padding: 0.375rem;
    font-size: 0.75rem;
  }
  
  .seeds-distributor-name {
    min-width: 150px;
  }
  
  .seeds-distributor-description {
    max-width: 200px;
  }
}

/* Internal Link Styling - Subtle and Reading-Friendly */
.seeds-internal-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--seeds-orange);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: all 0.2s ease;
}

.seeds-internal-link:hover {
  color: var(--seeds-orange);
  text-decoration-thickness: 2px;
}

/* Content area internal links - even more subtle */
.seeds-text-primary .seeds-internal-link,
.seeds-text-intro-panel .seeds-internal-link {
  color: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--seeds-light);
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.seeds-text-primary .seeds-internal-link:hover,
.seeds-text-intro-panel .seeds-internal-link:hover {
  color: var(--seeds-dark);
  text-decoration-color: var(--seeds-orange);
  font-weight: 600;
}

/* Consumer Dashboard - Responsive Grid */
@media (max-width: 768px) {
  .seeds-dashboard-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* ============================================
   LANDING PAGE STYLES
   ============================================ */

/* Landing Page Layout Components */
.seeds-services-landing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.seeds-service-landing-card {
  display: flex;
  flex-direction: column;
}

.seeds-why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.seeds-why-choose-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seeds-why-choose-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}



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

/* Landing Page Responsive Design */
@media (max-width: 768px) {
  .seeds-services-landing {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .seeds-why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .seeds-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .seeds-cta-buttons a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* ============================================
   RESPONSIVE VISIBILITY UTILITIES
   ============================================ */

/* Desktop-only content - hidden on mobile */
.desktop-only {
  display: grid !important;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: grid !important;
  }
  
  /* News and Insights mobile layout fix */
  .seeds-news-article {
    grid-template-columns: 1fr !important;
  }
  
  .seeds-news-article .seeds-image-container img {
    height: 150px !important;
  }
  
  /* Masonry Portfolio Layout - Mobile Responsive */
  .masonry-row {
    display: block !important;
    height: auto !important;
  }
  
  .masonry-row > div {
    width: 100% !important;
    height: 250px !important;
  }
  
  .masonry-content-row {
    display: block !important;
    padding: 2rem 1rem !important;
  }
  
  .masonry-content-row > div {
    padding: 1rem !important;
    margin-bottom: 2rem;
  }
  
  .masonry-content-row h3 {
    font-size: 1.25rem !important;
  }
}

/* ============================================
   PORTFOLIO HOVER OVERLAY STYLES 
   ============================================ */

/* Portfolio item containers with hover effects */
.portfolio-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: #000;
}

.portfolio-item img {
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item:hover img {
  opacity: 0.4 !important;
  transform: scale(1.05);
}

/* Portfolio overlay text that appears on hover */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1 !important;
}

.portfolio-overlay h3 {
  color: white !important;
  margin-bottom: 1rem;
}

.portfolio-overlay p {
  color: #e5e5e5 !important;
}

/* Masonry Layout Specific Styles */
.masonry-row {
  display: grid;
  gap: 0;
  margin-bottom: 0;
}

/* Mobile responsive for portfolio masonry */
@media (max-width: 768px) {
  .masonry-row {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    gap: 0 !important;
  }
  
  .portfolio-item {
    height: 300px !important;
    margin-bottom: 0 !important;
  }
  
  /* On mobile, show overlay by default with more transparency */
  .portfolio-overlay {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    padding: 1.5rem !important;
  }
  
  /* On mobile, keep images at higher opacity so they're visible through overlay */
  .portfolio-item img {
    opacity: 0.7 !important;
  }
  
  .portfolio-overlay h3 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
  }
  
  .portfolio-overlay p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
  }
}

/* FAQ Section Styles - Reusable Component */
.seeds-faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: all 0.3s ease;
}

.seeds-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.seeds-faq-summary {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.seeds-faq-item summary::-webkit-details-marker {
  display: none;
}

.seeds-faq-item summary::marker {
  display: none;
}

.seeds-faq-icon {
  font-size: var(--text-xl);
  color: var(--color-orange);
  font-weight: var(--font-bold);
  transition: var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.seeds-faq-item[open] .seeds-faq-icon {
  transform: rotate(45deg);
}

.seeds-faq-summary:hover {
  color: var(--color-orange);
}

.seeds-faq-answer {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-beige);
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-light);
}

@media (max-width: 768px) {
  .seeds-faq-item {
    padding: 1.25rem;
  }

  .seeds-faq-summary {
    font-size: 1rem;
  }
}

/* Core Services Section Styles */

/* Core Services Grid - Responsive - 4 services in single row */
.seeds-core-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .seeds-core-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .seeds-core-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .seeds-service-card {
    padding: 1.5rem 1rem !important;
  }
  
  .seeds-service-icon {
    width: 48px !important;
    height: 48px !important;
  }
  
  .seeds-service-icon i {
    font-size: 1.25rem !important;
  }
  
  .seeds-service-card h3 {
    font-size: 0.85rem !important;
  }
}

@media (max-width: 480px) {
  .seeds-core-services-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   UTILITY CLASSES
   Created from inline style pattern analysis
   ============================================ */

/* Layout Utilities */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-gap-2 { display: flex; gap: var(--space-2); }
.flex-gap-4 { display: flex; gap: var(--space-4); }
.flex-gap-8 { display: flex; gap: var(--space-8); }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid { display: grid; }
.grid-gap-4 { gap: var(--space-4); }
.grid-gap-8 { gap: var(--space-8); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Spacing Utilities - Padding */
.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-8 { padding: var(--space-8); }
.p-16 { padding: var(--space-16); }

.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-8 { padding-top: var(--space-4); padding-bottom: var(--space-8); }

/* Spacing Utilities - Margin */
.m-0 { margin: 0; }
.m-auto { margin: 0 auto; }

.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-16 { margin-bottom: var(--space-16); }

.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-16 { margin-top: var(--space-16); }

/* Width Utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }

/* Container Utilities - Centered content boxes */
.container-sm { max-width: 600px; margin: 0 auto; }
.container-md { max-width: 800px; margin: 0 auto; }
.container-lg { max-width: 900px; margin: 0 auto; }
.container-xl { max-width: 1200px; margin: 0 auto; }

/* Background Color Utilities */
.bg-white { background-color: var(--color-white); }
.bg-gray-50 { background-color: var(--color-gray-50); }
.bg-gray-100 { background-color: var(--color-gray-100); }
.bg-beige { background-color: var(--color-beige); }
.bg-gradient-beige { background: var(--gradient-beige); }
.bg-orange { background-color: var(--color-orange); }
.bg-dark { background-color: var(--color-dark); }
.bg-transparent { background-color: var(--color-transparent); }

/* Text Color Utilities */
.text-white { color: var(--color-white); }
.text-dark { color: var(--color-dark); }
.text-light { color: var(--color-light); }
.text-orange { color: var(--color-orange); }

/* Border Radius Utilities */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow Utilities */
.shadow { box-shadow: var(--shadow-card); }
.shadow-none { box-shadow: none; }

/* Common Component Patterns */
.card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.card-sm {
  background: var(--color-white);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.section-padding {
  padding: var(--space-16) var(--space-8);
}


/* ============================================
   COMPONENT CLASSES - Complex Patterns
   ============================================ */

/* Orange bullet/number marker */
.bullet-orange {
  color: var(--color-orange);
  font-weight: var(--font-bold);
  margin-right: var(--space-2);
}

/* Centered text containers */
.text-container-sm {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

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

.text-container-lg {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Grid layouts */
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.grid-2-col-8 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  align-items: center;
  justify-items: center;
}

.grid-auto-fit-250 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-8);
}

.grid-auto-fit-300 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

/* Flex column layouts */
.flex-col-4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.flex-col-8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

/* List resets */
.list-none {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-none-mb {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-8);
}

/* Positioned content with indent (for numbered/bulleted lists) */
.list-item-indented {
  margin-bottom: var(--space-4);
  padding-left: var(--space-8);
  position: relative;
}

.list-item-indented-sm {
  margin-bottom: var(--space-2);
  padding-left: var(--space-8);
  position: relative;
}

/* Absolute positioned markers (for custom bullets/numbers) */
.marker-absolute {
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: var(--font-bold);
}

/* Logo images */
.logo-sm {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

/* Dividers */
.divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 3rem 0;
}

/* Helper text / metadata */
.text-meta {
  font-size: var(--text-base);
  color: var(--color-light);
  margin-top: var(--space-1);
}

/* Flex with items aligned to start */
.flex-start-4 {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

/* Display Utilities */
.inline-block { display: inline-block; }
.inline-block-mr-4 { display: inline-block; margin-right: var(--space-4); }

/* Text Utilities Extended */
.text-no-decoration { text-decoration: none; }
.text-underline { text-decoration: underline; }
.text-orange-underline { color: var(--color-orange); text-decoration: underline; }
.text-dark-underline { color: var(--color-dark); text-decoration: underline; }
.whitespace-preline { white-space: pre-line; }
.text-center-white { text-align: center; color: var(--color-white); }
.text-center-mb-4 { text-align: center; margin-bottom: var(--space-4); }

/* Typography Combinations */
.text-base-body {
  font-size: var(--text-base);
  line-height: 1.8;
}

.text-base-body-dark {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-dark);
  margin: 0;
}

.text-base-mb-4-dark {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  color: var(--color-dark);
}

.text-base-medium {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
}

.text-base-bold-orange {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-orange);
}

.text-orange-mb-4 {
  color: var(--color-orange);
  margin-bottom: var(--space-4);
}

.line-height-relaxed { line-height: 1.8; }

/* Image Utilities */
.img-responsive {
  width: 100%;
  height: auto;
}

.img-responsive-rounded {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.img-logo-90 {
  height: 90px;
  object-fit: contain;
}

.img-logo-90-max {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
}

.img-avatar-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1.5rem auto;
}

/* Padding Utilities Extended */
.py-1 { padding-top: var(--space-1); padding-bottom: var(--space-1); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }

.pt-0 { padding-top: 0; }
.pt-8 { padding-top: var(--space-8); }
.pt-16 { padding-top: var(--space-16); }

.pb-0 { padding-bottom: 0; }
.pb-8 { padding-bottom: var(--space-8); }

.pt-16-pb-8 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}

.pt-8-pb-0 {
  padding-top: var(--space-8);
  padding-bottom: 0;
}

.p-center-3 {
  text-align: center;
  padding: 3rem 0;
}

/* Container Utilities Extended */
.container-1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.container-900-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Flex Utilities Extended */
.flex-gap-4-center {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

.flex-gap-4-center-wrap {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Text Container Variations */
.text-container-lg-mb-16 {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.text-left-mb-8 {
  text-align: left;
  margin-bottom: var(--space-8);
}

.text-center-mt-8 {
  text-align: center;
  margin-top: var(--space-8);
}

.text-left-mt-8 {
  margin-top: var(--space-8);
  text-align: left;
}

/* Additional Layout Utilities */
.hidden { display: none; }
.m-0 { margin: 0; }
.m-0-pl-4 { margin: 0; padding-left: var(--space-4); }

/* Gradient Backgrounds */
.bg-gradient-dark { background: var(--gradient-dark); }
.bg-gradient-dark-linear { background: linear-gradient(135deg, #171728 0%, #131321 100%); }

/* Height Utilities */
.h-40 { height: 40px; }

/* Complex Background Utilities */
.bg-dark-center {
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}

.bg-beige-py-16 {
  background: var(--color-beige);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

/* Button Utilities */
.btn-orange {
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
}

/* Text Containers with Specific MaxWidths */
.text-container-md-700 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.text-container-lg-mb-16-800 {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.text-left-600 {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 1rem auto;
}

/* Typography Utilities */
.text-xl-bold-white-mb-4 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.text-base-beige-mb-8 {
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
  color: var(--color-beige);
}

.text-bold-dark-mb-2 {
  margin: 0 0 0.5rem 0;
  font-weight: var(--font-bold);
  color: var(--color-dark);
}

/* Whitespace Utilities */
.whitespace-preline-left {
  white-space: pre-line;
  text-align: left;
}

.whitespace-preline-mb-8 {
  white-space: pre-line;
  margin-bottom: var(--space-8);
}

.whitespace-preline-body {
  white-space: pre-line;
  font-size: var(--text-base);
  line-height: 1.8;
}

.whitespace-preline-white {
  white-space: pre-line;
  color: var(--color-white);
}

/* Margin Utilities */
.mb-8-lh-relaxed {
  margin-bottom: var(--space-8);
  line-height: 1.8;
}

/* Grid Utilities */
.grid-gap-8 {
  display: grid;
  gap: var(--space-8);
}

/* Image Utilities Extended */
.img-card-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem 0.75rem 0 0;
}

/* ============================================
   RESPONSIVE UTILITIES - Mobile Breakpoints
   ============================================ */

/* Tablet and below (768px) */
@media (max-width: 768px) {
  /* Stack 2-column grids on mobile */
  .grid-2-col,
  .grid-2-col-8 {
    grid-template-columns: 1fr;
  }

  /* Stack 3-column grids on mobile */
  .grid-3-col {
    grid-template-columns: 1fr;
  }

  /* 4-column grids become 2 columns on tablet */
  .grid-4-col {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Adjust text containers for mobile */
  .text-container-sm,
  .text-container-md,
  .text-container-lg,
  .text-container-md-700,
  .text-container-lg-mb-16-800,
  .container-900-center {
    max-width: 100%;
    padding: 0 var(--space-4);
  }

  /* Full width containers on mobile */
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-1000 {
    padding: 0 var(--space-4);
  }

  /* Reduce padding on mobile */
  .section-padding {
    padding: var(--space-8) var(--space-4);
  }

  /* Adjust hero/card padding */
  .card,
  .card-sm {
    padding: var(--space-4);
  }

  /* Mobile typography adjustments */
  .seeds-h1,
  h1 {
    font-size: var(--text-xl);
  }

  /* Adjust flex gaps on mobile */
  .flex-gap-8 {
    gap: var(--space-4);
  }

  .flex-col-8 {
    gap: var(--space-4);
  }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
  /* Further reduce spacing */
  .mb-16 {
    margin-bottom: var(--space-8);
  }

  .pt-16,
  .pt-16-pb-8 {
    padding-top: var(--space-8);
  }

  /* Stack all multi-column grids on small mobile */
  .grid-auto-fit-250,
  .grid-auto-fit-300,
  .grid-4-col {
    grid-template-columns: 1fr;
  }

  /* Reduce image heights on small mobile */
  .img-card-top {
    height: 150px;
  }
}

/* ============================================
   SERVICE PANEL BACKGROUND IMAGES
   Homepage core services with background photos
   ============================================ */

.seeds-service-card-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: var(--card-height-lg);
  border: none !important;
}

.seeds-service-card-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, var(--overlay-light)),
    rgba(0, 0, 0, var(--overlay-dark))
  );
  border-radius: inherit;
  transition: background var(--transition-slow);
}

.seeds-service-card-bg:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, calc(var(--overlay-light) - 0.1)),
    rgba(0, 0, 0, var(--overlay-medium))
  );
}

.seeds-service-card-bg .seeds-service-icon {
  background: var(--color-orange) !important;
}

.seeds-service-card-bg h3 {
  color: var(--color-white) !important;
  font-size: var(--text-2xl) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.seeds-service-card-bg > * {
  position: relative;
  z-index: 1;
}

/* Individual service card backgrounds */
.seeds-service-card-marketing {
  background-image: url('/static/service-panels/food-marketin.webp');
}

.seeds-service-card-pr {
  background-image: url('/static/service-panels/food-pr.webp');
}

.seeds-service-card-research {
  background-image: url('/static/service-panels/food-research.webp');
}

.seeds-service-card-innovation {
  background-image: url('/static/service-panels/food-innovation.webp');
}

.seeds-service-card-sales {
  background-image: url('/static/service-panels/retail-strategy.webp');
}

.seeds-service-card-keynotes {
  background-image: url('/static/service-panels/keynotes.webp');
}

@media (max-width: 768px) {
  .seeds-service-card-bg {
    min-height: var(--card-height-md);
  }
}

@media (max-width: 480px) {
  .seeds-service-card-bg {
    min-height: var(--card-height-sm);
  }
}

/* Expert Panel - Reusable Component */
.expert-panel {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-12);
  align-items: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  box-shadow: var(--shadow-card);
}

.expert-panel-photo {
  text-align: center;
}

.expert-panel-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--space-4);
}

.expert-panel-name {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.expert-panel-title {
  font-size: var(--text-sm);
  color: var(--color-light);
  margin-bottom: var(--space-4);
}

.expert-panel-linkedin {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-orange);
  font-size: var(--text-sm);
  text-decoration: none;
  font-weight: var(--font-bold);
  transition: var(--transition-base);
}

.expert-panel-linkedin:hover {
  color: var(--color-dark-blue);
}

.expert-panel-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-orange);
  font-size: var(--text-sm);
  text-decoration: none;
  font-weight: var(--font-bold);
  transition: var(--transition-base);
  margin-top: var(--space-2);
}

.expert-panel-email:hover {
  color: var(--color-dark-blue);
}

.expert-panel-bio {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-dark);
}

.expert-panel-bio a {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: var(--font-semibold);
  transition: var(--transition-base);
}

.expert-panel-bio a:hover {
  color: var(--color-dark-blue);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .expert-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expert-panel-photo {
    margin-bottom: var(--space-4);
  }

  .expert-panel-bio {
    text-align: left;
  }
}

/* Dual Expert Panel - Reusable Component (side-by-side founders/team) */
.dual-expert-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

.dual-expert-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.dual-expert-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-4);
}

.dual-expert-name {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-1);
}

.dual-expert-title {
  font-size: var(--text-sm);
  color: var(--color-light);
  margin-bottom: var(--space-4);
}

.dual-expert-bio {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-dark);
  text-align: left;
  margin-bottom: var(--space-4);
}

.dual-expert-linkedin {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-orange);
  font-size: var(--text-sm);
  text-decoration: none;
  font-weight: var(--font-bold);
  transition: var(--transition-base);
}

.dual-expert-linkedin:hover {
  color: var(--color-dark-blue);
}

@media (max-width: 768px) {
  .dual-expert-panel {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* Step Cards - Booking Process */
.seeds-step-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 1px solid rgba(113, 123, 159, 0.1);
}

.seeds-step-number {
  width: 48px;
  height: 48px;
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-4);
}

/* ===========================================
   INSIGHTS PAGE - Article Grid & Tags
   =========================================== */

/* Main layout: 3-column articles + tags sidebar */
.insights-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-12);
  align-items: start;
}

/* 3-column article grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

/* Individual article card */
.article-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
  border: 1px solid rgba(113, 123, 159, 0.1);
}

.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.article-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card-content {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-card-title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-dark);
  margin: 0 0 var(--space-3) 0;
  line-height: 1.3;
}

.article-card-title a {
  color: inherit;
  text-decoration: none;
}

.article-card-title a:hover {
  color: var(--color-orange);
}

.article-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-light);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.article-card-button {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-dark);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-dark);
  text-decoration: none;
  text-align: center;
  transition: var(--transition-base);
  margin-bottom: var(--space-4);
  align-self: flex-start;
}

.article-card-button:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* Tags displayed on article cards (non-clickable) */
.article-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(113, 123, 159, 0.1);
}

.article-card-tag {
  font-size: var(--text-xs);
  color: var(--color-light);
}

/* Tags Sidebar */
.insights-sidebar {
  position: sticky;
  top: var(--space-8);
  align-self: start;
}

.sidebar-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(113, 123, 159, 0.1);
  margin-bottom: var(--space-6);
}

.sidebar-header {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--space-4) 0;
}

/* Clickable tag list in sidebar */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-item {
  font-size: var(--text-sm);
  color: var(--color-dark);
  text-decoration: none;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
}

.tag-item:hover {
  color: var(--color-orange);
  background: rgba(255, 153, 0, 0.1);
}

.tag-item--active {
  color: var(--color-orange);
  font-weight: var(--font-bold);
}

/* Related Articles in Sidebar */
.related-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-article-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(113, 123, 159, 0.1);
}

.related-article-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-article-item:first-child {
  padding-top: 0;
}

.related-article-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.related-article-title {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-dark);
  text-decoration: none;
  line-height: 1.4;
}

.related-article-title:hover {
  color: var(--color-orange);
}

/* ===========================================
   ARTICLE PAGE - Content & Author
   =========================================== */

/* Article page layout with sidebar */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-12);
  align-items: start;
}

.article-content {
  max-width: none;
}

/* Article sidebar (tags + related) */
.article-sidebar {
  position: sticky;
  top: var(--space-8);
}

/* Author Section */
/* Author section - two-column layout (reusable) */
.author-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-8);
  align-items: start;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  margin-top: var(--space-12);
  border: 1px solid rgba(113, 123, 159, 0.1);
}

.author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-card);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.author-name {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-dark);
  margin: 0;
}

.author-role {
  font-size: var(--text-sm);
  color: var(--color-light);
  margin: 0;
}

.author-bio {
  font-size: var(--text-base);
  color: var(--color-dark);
  line-height: 1.7;
  margin-top: var(--space-2);
}

.author-bio p {
  margin: 0 0 var(--space-3) 0;
}

.author-bio p:last-child {
  margin-bottom: 0;
}

.author-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

.author-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-orange);
  text-decoration: none;
  font-weight: var(--font-medium);
}

.author-link:hover {
  color: var(--color-dark-blue);
}

/* Tag Filter Header (when viewing filtered results) */
.tag-filter-header {
  background: rgba(255, 153, 0, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tag-filter-label {
  font-size: var(--text-base);
  color: var(--color-dark);
}

.tag-filter-label strong {
  color: var(--color-orange);
}

.tag-filter-clear {
  font-size: var(--text-sm);
  color: var(--color-light);
  text-decoration: none;
}

.tag-filter-clear:hover {
  color: var(--color-orange);
}

/* ===========================================
   INSIGHTS RESPONSIVE STYLES
   =========================================== */

@media (max-width: 1200px) {
  .insights-layout,
  .article-layout {
    grid-template-columns: 1fr 240px;
    gap: var(--space-8);
  }
}

@media (max-width: 1024px) {
  .insights-layout {
    grid-template-columns: 1fr;
  }

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

  .insights-sidebar {
    position: static;
    order: -1;
    margin-bottom: var(--space-8);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .author-section {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .author-photo {
    width: 100px;
    height: 100px;
  }

  .author-info {
    align-items: center;
  }

  .author-links {
    justify-content: center;
  }
}


/* ============================================
   Research Page - Comparison Section
   ============================================ */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.comparison-column {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.comparison-column--highlight {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.comparison-title {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-gray-400);
  margin-bottom: var(--space-8);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-title--highlight {
  color: var(--color-orange);
}

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.comparison-pill {
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  color: var(--color-gray-300);
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.comparison-pill--highlight {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.comparison-icon {
  color: var(--color-gray-500);
  flex-shrink: 0;
}

.comparison-icon--highlight {
  color: var(--color-orange);
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Research Page - Who We Serve Section
   ============================================ */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.audience-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid #e1e5e9;
}

.audience-card-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-gray-800);
  margin-bottom: var(--space-4);
  line-height: 1.4;
}

.audience-card-description {
  color: var(--color-gray-700);
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-8);
}

.audience-use-cases {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-use-case {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-gray-700);
  font-size: var(--text-base);
  line-height: 1.6;
}

.audience-use-case::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Research Page - Additional Sections
   ============================================ */

/* Hero Background - Research Page */
.research-hero-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(/static/hero-images/research-hero-bg.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

/* Benefit Cards Section */
.benefit-card {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid #e1e5e9;
  text-align: center;
}

.benefit-card-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 0 auto var(--space-8);
  display: block;
}

.benefit-card-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-gray-800);
  margin-bottom: var(--space-8);
  line-height: 1.4;
}

.benefit-card-description {
  color: var(--color-gray-700);
  font-size: var(--text-base);
  line-height: 1.8;
  margin: 0;
}

/* Country Grid Section */
.country-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.country-card {
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid #e1e5e9;
  text-align: center;
  min-width: 120px;
  flex: 0 0 auto;
}

.country-flag {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.country-name {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-gray-800);
  margin-bottom: var(--space-1);
  line-height: 1.4;
}

.country-population {
  font-size: var(--text-base);
  color: var(--color-gray-700);
  margin: 0;
  font-weight: var(--font-bold);
}

.country-footer {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-light);
  text-align: center;
  margin-top: var(--space-12);
  font-style: italic;
}

@media (max-width: 768px) {
  .country-grid {
    gap: var(--space-2);
  }

  .country-card {
    padding: var(--space-4);
    min-width: 100px;
  }
}

/* Owned Intelligence Steps Section */
.intelligence-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-12);
  max-width: 1000px;
  margin: 0 auto;
}

.intelligence-step {
  text-align: center;
  color: var(--color-white);
}

.intelligence-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-8);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
}

.intelligence-step-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.intelligence-step-subtitle {
  font-size: var(--text-base);
  color: var(--color-light);
  margin-bottom: var(--space-8);
  font-weight: var(--font-bold);
  line-height: 1.4;
}

.intelligence-step-description {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-gray-200);
  text-align: left;
  max-width: 300px;
  margin: 0 auto;
}

.intelligence-step-description p {
  margin-bottom: var(--space-4);
}

.intelligence-step-description p:last-child {
  margin-bottom: 0;
}

/* Academic Foundations Section */
.university-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.university-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.university-logo {
  max-height: 70px;
  max-width: 250px;
  object-fit: contain;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.methodology-item {
  text-align: left;
  padding: var(--space-1);
}

.methodology-title {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-gray-800);
  margin-bottom: var(--space-4);
  line-height: 1.4;
}

.methodology-description {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--color-gray-700);
  margin: 0;
}

@media (max-width: 768px) {
  .university-logos {
    gap: var(--space-4);
  }

  .university-logo {
    max-height: 50px;
    max-width: 150px;
  }

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

/* CTA Section - Research Page Variant */
.research-cta {
  background: var(--gradient-dark);
  padding: 4rem 2rem;
  text-align: center;
}

.research-cta-headline {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-4);
  color: var(--color-white);
}

.research-cta-text {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  color: var(--color-gray-200);
}

.research-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.research-cta-btn-primary {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  transition: var(--transition-base);
}

.research-cta-btn-primary:hover {
  opacity: 0.9;
}

.research-cta-btn-secondary {
  background: transparent;
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  transition: var(--transition-base);
  border: 2px solid white;
}

.research-cta-btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

@media (max-width: 640px) {
  .research-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .research-cta-btn-primary,
  .research-cta-btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

/* Section intro text - centered with max-width */
.section-intro {
  font-size: var(--text-base);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

.section-intro--light {
  color: var(--color-gray-200);
}

.section-intro--dark {
  color: var(--color-gray-700);
}

/* Hero button wrapper */
.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* White secondary button for dark backgrounds */
.seeds-btn-hero-white {
  background: var(--color-white);
  color: var(--color-dark);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  transition: var(--transition-base);
}

.seeds-btn-hero-white:hover {
  opacity: 0.9;
}
