/* 6 Seeds Design System - Complete CSS Framework */
/* Extracted from 6seeds.ca for use in new projects */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Brand Colors */
  --seeds-primary: #363166;     /* Primary dark blue - for headlines etc */
  --seeds-dark: #363166;        /* Primary dark blue (alias) */
  --seeds-secondary: #717b9f;   /* Secondary accent color */
  --seeds-orange: #ff950a;      /* Orange - for CTAs etc */
  --seeds-orange-dark: #e67e22; /* Darker orange for hovers */

  --seeds-light: #f8f9fa;       /* Light background */
  --seeds-white: #ffffff;       /* Pure white */
  
  /* Hero-only gradient */
  --seeds-gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  
  /* Very subtle light gradient for white panels */
  --seeds-gradient-light: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  
  /* Text Colors */
  --seeds-text-primary: #2c3e50;   /* Dark blue-gray for primary text */
  --seeds-text-secondary: #7f8c8d; /* Medium gray for secondary text */
  --seeds-text-muted: #95a5a6;     /* Light gray for muted text */
  
  /* Border Colors */
  --seeds-border: #e1e8ed;         /* Default border color */
  --seeds-border-light: #f0f4f8;   /* Light border for subtle divisions */
  
  /* Emphasis Color */
  --seeds-emphasis: #4a90e2;       /* Gradient blue for text emphasis */
  
  /* Spacing Scale */
  --seeds-space-xs: 0.25rem;    /* 4px */
  --seeds-space-sm: 0.5rem;     /* 8px */
  --seeds-space-md: 1rem;       /* 16px */
  --seeds-space-lg: 1.5rem;     /* 24px */
  --seeds-space-xl: 2rem;       /* 32px */
  --seeds-space-2xl: 3rem;      /* 48px */
  --seeds-space-3xl: 4rem;      /* 64px */
  
  /* Typography Scale */
  --seeds-text-xs: 0.75rem;     /* 12px */
  --seeds-text-sm: 0.875rem;    /* 14px */
  --seeds-text-base: 1rem;      /* 16px */
  --seeds-text-lg: 1.125rem;    /* 18px */
  --seeds-text-xl: 1.25rem;     /* 20px */
  --seeds-text-20px: 1.25rem;   /* 20px - Explicit size for empathy copy */
  --seeds-text-2xl: 1.5rem;     /* 24px */
  --seeds-text-3xl: 1.875rem;   /* 30px */
  --seeds-text-4xl: 2.25rem;    /* 36px */
  --seeds-text-4_5xl: 2.625rem; /* 42px */
  --seeds-text-5xl: 3rem;       /* 48px */
  
  /* Shadows */
  --seeds-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --seeds-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --seeds-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --seeds-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --seeds-radius-sm: 0.25rem;   /* 4px */
  --seeds-radius-md: 0.375rem;  /* 6px */
  --seeds-radius-lg: 0.5rem;    /* 8px */
  --seeds-radius-xl: 0.75rem;   /* 12px */
}

/* ===== CSS RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: var(--seeds-text-primary);
  background-color: var(--seeds-white);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ===== TYPOGRAPHY SYSTEM ===== */
.seeds-h1-hero {
  font-size: var(--seeds-text-5xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--seeds-text-primary);
  margin: 0 0 var(--seeds-space-lg) 0;
}

.seeds-h2 {
  font-size: var(--seeds-text-3xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--seeds-primary);
  margin: 0 0 var(--seeds-space-md) 0;
}

.seeds-h2-large {
  font-size: var(--seeds-text-4_5xl); /* 42px */
  font-weight: 600;
  line-height: 1.4;
  color: var(--seeds-primary);
  margin: 0 0 var(--seeds-space-md) 0;
}

.seeds-h2-large-white {
  font-size: var(--seeds-text-4_5xl); /* 42px */
  font-weight: 600;
  line-height: 1.4;
  color: var(--seeds-white);
  margin: 0 0 var(--seeds-space-md) 0;
}

.seeds-h2-white {
  font-size: var(--seeds-text-3xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--seeds-white);
  margin: 0 0 var(--seeds-space-md) 0;
}

.seeds-h3 {
  font-size: var(--seeds-text-xl);
  font-weight: 700;
  line-height: 1.3;
  color: var(--seeds-text-primary);
  margin: 0 0 var(--seeds-space-sm) 0;
}

.seeds-h4 {
  font-size: var(--seeds-text-lg);
  font-weight: 600;
  line-height: 1.3;
  color: var(--seeds-text-primary);
  margin: 0 0 var(--seeds-space-sm) 0;
}

/* Text Emphasis Utility */
.seeds-text-emphasis {
  color: var(--seeds-emphasis);
}

/* 20px Text for Key Descriptions */
.seeds-text-20px {
  font-size: var(--seeds-text-20px);
}

/* Gradient Text Effects */
.seeds-text-gradient {
  background: linear-gradient(135deg, var(--seeds-emphasis) 0%, var(--seeds-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Fallback for browsers that don't support background-clip: text */
  color: var(--seeds-emphasis);
}

/* Light Gradient for Dark Backgrounds */
.seeds-text-gradient-light {
  background: linear-gradient(135deg, #6ba3f5 0%, #87ceeb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Fallback for browsers that don't support background-clip: text */
  color: #6ba3f5;
}

.seeds-h4-white {
  font-size: var(--seeds-text-lg);
  font-weight: 600;
  line-height: 1.3;
  color: var(--seeds-white);
  margin: 0 0 var(--seeds-space-sm) 0;
}

.seeds-text-primary {
  font-size: var(--seeds-text-base);
  color: var(--seeds-text-primary);
  line-height: 1.6;
}

.seeds-text-secondary {
  font-size: var(--seeds-text-base);
  font-weight: 400;
  color: var(--seeds-text-secondary);
  line-height: 1.6;
}

.seeds-text-muted {
  font-size: var(--seeds-text-sm);
  color: var(--seeds-text-muted);
  line-height: 1.5;
}

.seeds-text-white {
  color: var(--seeds-white);
}

.seeds-text-lg {
  font-size: var(--seeds-text-lg);
}

.seeds-text-xl {
  font-size: var(--seeds-text-xl);
}

/* ===== LAYOUT SYSTEM ===== */
.seeds-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--seeds-space-lg);
}

.seeds-section {
  padding: calc(var(--seeds-space-3xl) * 1.5) 0;
}

.seeds-section-alt {
  background-color: var(--seeds-light);
}

.seeds-section-header {
  text-align: center;
  margin-bottom: calc(var(--seeds-space-2xl) * 1.5);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTON SYSTEM ===== */
.seeds-btn-primary {
  background-color: var(--seeds-orange);
  color: var(--seeds-white);
  padding: calc(var(--seeds-space-sm) * 0.75) var(--seeds-space-md);
  border: none;
  border-radius: var(--seeds-radius-sm);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: var(--seeds-text-sm);
  line-height: 1.4;
}

.seeds-btn-primary:hover {
  background-color: var(--seeds-orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--seeds-shadow-md);
}

.seeds-btn-secondary {
  background-color: var(--seeds-white);
  color: var(--seeds-dark);
  padding: calc(var(--seeds-space-sm) * 0.75) var(--seeds-space-md);
  border: 1px solid var(--seeds-dark);
  border-radius: var(--seeds-radius-sm);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: var(--seeds-text-sm);
  line-height: 1.4;
}

.seeds-btn-secondary:hover {
  background-color: var(--seeds-dark);
  color: var(--seeds-white);
  transform: translateY(-1px);
  box-shadow: var(--seeds-shadow-md);
}

.seeds-btn-lg {
  padding: var(--seeds-space-sm) var(--seeds-space-lg);
  font-size: var(--seeds-text-base);
  font-weight: 500;
}

.seeds-btn-full {
  width: 100%;
  text-align: center;
}

/* ===== APPLE-STYLE CTA BUTTONS ===== */
.seeds-cta-apple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: var(--seeds-text-base);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  line-height: 1.2;
  background-color: transparent;
  color: var(--seeds-white);
  border: 2px solid var(--seeds-white);
}

.seeds-cta-apple:hover {
  background-color: var(--seeds-white);
  color: var(--seeds-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Navigation-specific Apple CTA for white backgrounds */
.seeds-cta-apple-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  font-size: var(--seeds-text-base);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
  line-height: 1.2;
  background-color: transparent;
  color: var(--seeds-primary);
  border: 2px solid var(--seeds-primary);
}

.seeds-cta-apple-nav:hover {
  background-color: var(--seeds-primary);
  color: var(--seeds-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(54, 49, 102, 0.25);
}

/* CTA Group for Apple-style buttons */
.seeds-cta-group-apple {
  display: flex;
  gap: var(--seeds-space-md);
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .seeds-cta-group-apple {
    flex-direction: column;
    width: 100%;
  }
  
  .seeds-cta-apple {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== NAVIGATION SYSTEM ===== */
.seeds-nav {
  background-color: var(--seeds-white);
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--seeds-shadow-md);
}

.seeds-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--seeds-space-md) 0;
}

.seeds-nav-links {
  display: flex;
  align-items: center;
  gap: var(--seeds-space-lg);
}

.seeds-nav-link {
  color: var(--seeds-text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.seeds-nav-link:hover {
  color: var(--seeds-orange);
}

.seeds-logo img {
  height: 40px;
  width: auto;
}

/* ===== HERO SYSTEM ===== */
.seeds-hero {
  padding: calc(var(--seeds-space-3xl) * 2) 0 calc(var(--seeds-space-3xl) * 1.5) 0;
  background-color: var(--seeds-white);
}

.seeds-hero-standout {
  background: var(--seeds-gradient-hero);
  margin: 0;
  padding: 5.375rem 0 8.75rem 0;
  color: var(--seeds-white) !important;
}

.seeds-hero-standout h1,
.seeds-hero-standout h2,
.seeds-hero-standout h3,
.seeds-hero-standout h4,
.seeds-hero-standout h5,
.seeds-hero-standout h6,
.seeds-hero-standout p {
  color: var(--seeds-white) !important;
}

.seeds-hero-standout .seeds-benefit-card,
.seeds-hero-standout .seeds-benefit-card h3,
.seeds-hero-standout .seeds-benefit-card p {
  color: var(--seeds-text-primary) !important;
}

.seeds-h1-hero-large {
  font-size: calc(var(--seeds-text-5xl) * 1.2);
  line-height: 1.05;
  margin-bottom: calc(var(--seeds-space-lg) * 1.5);
}

.seeds-h2-hero {
  font-size: calc(var(--seeds-text-2xl) * 1.1);
}

.seeds-text-hero {
  font-size: calc(var(--seeds-text-lg) * 1.15);
  line-height: 1.65;
}

.seeds-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--seeds-space-2xl) * 1.5);
  align-items: center;
}

.seeds-hero-content {
  max-width: 650px;
}

.seeds-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.seeds-hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--seeds-radius-lg);
  box-shadow: var(--seeds-shadow-lg);
}

.seeds-hero-placeholder {
  width: 100%;
  height: 400px;
  background-color: var(--seeds-light);
  border: 2px dashed var(--seeds-text-muted);
  border-radius: var(--seeds-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--seeds-text-secondary);
  font-weight: 500;
}

.seeds-cta-group {
  display: flex;
  gap: var(--seeds-space-md);
  margin-top: var(--seeds-space-lg);
}

/* ===== GRID SYSTEMS ===== */
.seeds-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--seeds-space-xl) * 1.5);
  margin-top: calc(var(--seeds-space-2xl) * 1.25);
}

.seeds-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--seeds-space-xl) * 1.25);
  margin-top: calc(var(--seeds-space-2xl) * 1.25);
}

.seeds-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: calc(var(--seeds-space-xl) * 1.5);
  margin-top: calc(var(--seeds-space-2xl) * 1.25);
}

/* ===== CARD SYSTEM ===== */
.seeds-benefit-card {
  background: var(--seeds-gradient-light);
  padding: calc(var(--seeds-space-xl) * 1.5);
  border-radius: var(--seeds-radius-lg);
  box-shadow: var(--seeds-shadow-md);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* .seeds-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--seeds-shadow-lg);
} */

.seeds-benefit-icon {
  font-size: var(--seeds-text-4xl);
  color: var(--seeds-orange);
  margin-bottom: calc(var(--seeds-space-md) * 1.5);
}

.seeds-process-step {
  text-align: center;
  padding: calc(var(--seeds-space-lg) * 1.5);
}

.seeds-step-number {
  width: 120px;  /* 50% larger: 80px -> 120px */
  height: 120px; /* 50% larger: 80px -> 120px */
  border-radius: 50%;
  background-color: transparent;  /* Remove orange background */
  border: 3px solid var(--seeds-white);  /* White outline */
  color: var(--seeds-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--seeds-text-3xl);  /* Larger numbers: 2xl -> 3xl */
  font-weight: 700;
  margin: 0 auto calc(var(--seeds-space-lg) * 1.5) auto;
}

.seeds-case-study-card {
  background: var(--seeds-gradient-light);
  padding: calc(var(--seeds-space-xl) * 1.5);
  border-radius: var(--seeds-radius-lg);
  box-shadow: var(--seeds-shadow-md);
}

.seeds-case-study-header {
  margin-bottom: var(--seeds-space-md);
}

.seeds-case-study-meta {
  display: flex;
  gap: var(--seeds-space-sm);
  margin-top: var(--seeds-space-sm);
}

.seeds-tag {
  background-color: var(--seeds-light);
  color: var(--seeds-text-secondary);
  padding: var(--seeds-space-xs) var(--seeds-space-sm);
  border-radius: var(--seeds-radius-sm);
  font-size: var(--seeds-text-sm);
  font-weight: 500;
}

.seeds-case-study-metrics {
  display: flex;
  gap: var(--seeds-space-lg);
  margin-top: var(--seeds-space-md);
}

.seeds-metric {
  text-align: center;
}

.seeds-metric-value {
  display: block;
  font-size: var(--seeds-text-2xl);
  font-weight: 700;
  color: var(--seeds-orange);
}

.seeds-metric-label {
  display: block;
  font-size: var(--seeds-text-sm);
  color: var(--seeds-text-secondary);
  margin-top: var(--seeds-space-xs);
}

/* ===== CTA SECTION STYLES ===== */
.seeds-cta-section {
  /* Margin and padding controlled by individual sections */
}

.seeds-shared-footer {
  margin-top: 0 !important;
  padding-top: var(--seeds-space-2xl) !important;
}

/* ===== METHODOLOGY PAGE STYLES ===== */
.seeds-methodology-section {
  margin-bottom: calc(var(--seeds-space-2xl) * 1.5);
  padding-bottom: var(--seeds-space-xl);
  border-bottom: 1px solid var(--seeds-border);
}

.seeds-methodology-section:last-child {
  border-bottom: none;
}

.seeds-plain-english {
  background: var(--seeds-light);
  padding: var(--seeds-space-lg);
  border-radius: var(--seeds-radius-md);
  margin-top: var(--seeds-space-lg);
  border-left: 4px solid var(--seeds-orange);
  font-style: italic;
  color: var(--seeds-text-primary);
}

.seeds-plain-english strong {
  color: var(--seeds-orange);
  font-weight: 600;
  font-style: normal;
}

/* ===== FORM SYSTEM ===== */
.seeds-input {
  width: 100%;
  padding: var(--seeds-space-md);
  border: 2px solid #e1e8ed;
  border-radius: var(--seeds-radius-md);
  font-size: var(--seeds-text-base);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.seeds-textarea {
  width: 100%;
  padding: var(--seeds-space-md);
  border: 2px solid #e1e8ed;
  border-radius: var(--seeds-radius-md);
  font-size: var(--seeds-text-base);
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.seeds-select {
  width: 100%;
  padding: var(--seeds-space-md);
  border: 2px solid #e1e8ed;
  border-radius: var(--seeds-radius-md);
  font-size: var(--seeds-text-base);
  background-color: var(--seeds-white);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.seeds-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--seeds-space-md);
  margin-bottom: var(--seeds-space-md);
}

/* ===== DIGITAL TWIN SECTION ===== */
.digital-twin-section {
  background-image: url('https://page.gensparksite.com/v1/base64_upload/23703d3e7e17c71b8a394ae7546fccd0');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.digital-twin-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 15, 30, 0.7);
  z-index: 1;
}

.digital-twin-section > .seeds-container {
  position: relative;
  z-index: 2;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
  background-image: url('https://page.gensparksite.com/v1/base64_upload/4d9f5888e4fa750f0b6353e1dd4cf3ae');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 15, 30, 0.8);
  z-index: 1;
}

.how-it-works-section > .seeds-container {
  position: relative;
  z-index: 2;
}

/* ===== STRONGER DECISIONS SECTION ===== */
.stronger-decisions-section {
  background-image: url('https://page.gensparksite.com/v1/base64_upload/d4cf1a142aef0e3604db80276df50792');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.stronger-decisions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 15, 30, 0.7);
  z-index: 1;
}

.stronger-decisions-section > .seeds-container {
  position: relative;
  z-index: 2;
}

/* ===== MOBILE NAVIGATION ===== */
.seeds-nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
}

.seeds-hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--seeds-text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.seeds-nav-mobile {
  display: none;
  flex-direction: column;
  background-color: var(--seeds-white);
  border-top: 1px solid var(--seeds-border);
  padding: var(--seeds-space-lg) 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: var(--seeds-shadow-lg);
  z-index: 1000;
}

.seeds-nav-mobile.active {
  display: flex;
}

.seeds-nav-link-mobile {
  display: block;
  padding: var(--seeds-space-md) var(--seeds-space-lg);
  text-decoration: none;
  color: var(--seeds-text-primary);
  font-weight: 500;
  border-bottom: 1px solid var(--seeds-border-light);
  transition: background-color 0.2s ease;
}

.seeds-nav-link-mobile:hover {
  background-color: var(--seeds-light);
}

.seeds-nav-link-mobile:last-child {
  border-bottom: none;
}

.seeds-nav-cta-mobile {
  margin: var(--seeds-space-md) var(--seeds-space-lg) 0;
  text-align: center;
  border-bottom: none !important;
}

/* Mobile hamburger animation */
.seeds-nav-mobile-toggle.active .seeds-hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
}

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

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

/* Responsive Navigation */
@media (max-width: 768px) {
  .seeds-nav-desktop {
    display: none;
  }
  
  .seeds-nav-mobile-toggle {
    display: flex;
  }
  
  .seeds-nav {
    position: relative;
  }
  
  /* Countries grid - 2 columns on mobile */
  .seeds-countries-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--seeds-space-md) !important;
  }
}

/* ===== COLLAPSIBLE FAQ SECTIONS - ULTRA COMPACT ===== */
.seeds-faq-category {
  border: 1px solid var(--seeds-border);
  border-radius: var(--seeds-radius-md);
  margin-bottom: 0;  /* NO spacing between collapsed categories */
  overflow: hidden;
}

.seeds-faq-toggle {
  background: var(--seeds-light);
  padding: 6px 12px;  /* Back to normal readable padding */
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: var(--seeds-primary);
  font-weight: 600;
  font-size: var(--seeds-text-base);
  line-height: 1.2;  /* Normal line height */
}

.seeds-faq-toggle:hover {
  background: var(--seeds-border-light);
}

.seeds-faq-arrow {
  color: var(--seeds-primary);
  transition: transform 0.3s ease;
  font-size: var(--seeds-text-sm);
  margin-left: 8px;  /* Normal arrow spacing */
}

.seeds-faq-arrow.rotated {
  transform: rotate(180deg);
}

.seeds-faq-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--seeds-white);
}

.seeds-faq-items.expanded {
  max-height: 2000px;
}

.seeds-faq-items .seeds-faq-item {
  padding: var(--seeds-space-md) var(--seeds-space-lg);  /* Proper readable padding (16px 24px) */
  border-bottom: 1px solid var(--seeds-border-light);
}

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

/* Proper readable FAQ typography */
.seeds-faq-item h4 {
  margin: 0 0 var(--seeds-space-sm) 0 !important;  /* Proper margin below questions */
  padding: 0 !important;
  font-size: var(--seeds-text-base) !important;  /* 16px - readable size */
  line-height: 1.4 !important;
  font-weight: 600;
}

.seeds-faq-item p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: var(--seeds-text-base) !important;  /* 16px - same as questions for readability */
  line-height: 1.5 !important;
  color: var(--seeds-text-secondary);
}

/* Remove any default margins from FAQ categories */
.seeds-faq-category-title {
  margin: 0 !important;
  padding: 0 !important;
}

/* Proper FAQ section spacing */
.seeds-faq-section {
  margin: 0;
  padding: 0;
}

/* ===== CTA SECTION ===== */
.seeds-cta-section {
  background: var(--seeds-gradient-hero);
  color: var(--seeds-white);
}

.seeds-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.seeds-cta-form {
  margin-top: var(--seeds-space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER SYSTEM ===== */
.seeds-footer {
  background-color: var(--seeds-dark);
  color: var(--seeds-white);
  padding: var(--seeds-space-2xl) 0 var(--seeds-space-md) 0;
}

.seeds-footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--seeds-space-2xl);
  margin-bottom: var(--seeds-space-xl);
}

.seeds-footer-brand p {
  color: var(--seeds-text-muted);
  margin-top: var(--seeds-space-sm);
}

.seeds-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--seeds-space-xl);
}

.seeds-footer-column h4 {
  margin-bottom: var(--seeds-space-md);
}

.seeds-footer-link {
  display: block;
  color: var(--seeds-text-muted);
  text-decoration: none;
  margin-bottom: var(--seeds-space-xs);
  transition: color 0.2s ease;
}

.seeds-footer-link:hover {
  color: var(--seeds-orange);
}

.seeds-footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: var(--seeds-space-md);
  text-align: center;
}

.seeds-footer-logo {
  height: 32px;
  width: auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .seeds-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--seeds-space-xl);
    text-align: center;
  }
  
  .seeds-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .seeds-case-studies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .seeds-container {
    padding: 0 var(--seeds-space-md);
  }
  
  .seeds-section {
    padding: calc(var(--seeds-space-2xl) * 1.25) 0;
  }
  
  .seeds-hero {
    padding: calc(var(--seeds-space-3xl) * 1.5) 0;
  }
  
  .seeds-hero-standout {
    margin: 0;
    padding: calc(var(--seeds-space-xl) * 1.5) 0 calc(var(--seeds-space-2xl) * 2) 0;
  }
  
  .seeds-h1-hero {
    font-size: var(--seeds-text-4xl);
    margin-bottom: calc(var(--seeds-space-lg) * 1.5);
  }
  
  .seeds-h1-hero-large {
    font-size: calc(var(--seeds-text-4xl) * 1.1);
  }
  
  .seeds-h2 {
    font-size: var(--seeds-text-2xl);
  }
  
  .seeds-nav-content {
    flex-direction: column;
    gap: var(--seeds-space-md);
  }
  
  .seeds-nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  
  .seeds-cta-group {
    flex-direction: column;
    align-items: center;
  }
  
  .seeds-form-row {
    grid-template-columns: 1fr;
  }
  
  .seeds-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .seeds-footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .seeds-case-study-metrics {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .seeds-benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .seeds-process-grid {
    grid-template-columns: 1fr;
  }
  
  .seeds-h1-hero {
    font-size: var(--seeds-text-3xl);
  }
}

/* ================================
   SHARED FOOTER COMPONENT
   ================================ */

.seeds-shared-footer {
  background: var(--seeds-gradient-hero);
  color: var(--seeds-white);
  padding: calc(var(--seeds-space-xl) * 2.5) 0 var(--seeds-space-xl) 0;
  margin-top: calc(var(--seeds-space-xl) * 2);
}

.seeds-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(var(--seeds-space-xl) * 1.5);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--seeds-space-lg);
}

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

.seeds-footer-column h4 {
  color: var(--seeds-white);
  font-size: var(--seeds-text-lg);
  font-weight: 700;
  margin-bottom: calc(var(--seeds-space-lg) * 1.5);
  letter-spacing: 0.025em;
}

.seeds-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--seeds-space-md);
}

.seeds-footer-nav-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 400;
  font-size: var(--seeds-text-base);
  transition: color 0.2s ease;
  line-height: 1.4;
}

.seeds-footer-nav-link:hover {
  color: var(--seeds-white);
  text-decoration: none;
}

.seeds-footer-contact-info {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: var(--seeds-text-base);
  margin-bottom: var(--seeds-space-lg);
}

.seeds-footer-contact-info p {
  margin: 0 0 var(--seeds-space-sm) 0;
}

.seeds-footer-contact-info .contact-address {
  margin-bottom: var(--seeds-space-md);
}

.seeds-footer-contact-info .contact-phone,
.seeds-footer-contact-info .contact-email {
  margin-bottom: var(--seeds-space-xs);
}

.seeds-footer-contact-info .contact-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--seeds-space-md);
}

.seeds-footer-company-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: var(--seeds-text-base);
  margin-bottom: calc(var(--seeds-space-lg) * 1.5);
}

.seeds-footer-social-links {
  display: flex;
  gap: var(--seeds-space-md);
}

.seeds-footer-social-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--seeds-text-xl);
  transition: color 0.2s ease;
  text-decoration: none;
}

.seeds-footer-social-link:hover {
  color: var(--seeds-white);
}

.seeds-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: calc(var(--seeds-space-xl) * 1.5);
  padding-top: var(--seeds-space-xl);
  text-align: center;
}

.seeds-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--seeds-text-sm);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .seeds-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--seeds-space-xl);
    padding: 0 var(--seeds-space-md);
  }
  
  .seeds-shared-footer {
    padding: calc(var(--seeds-space-xl) * 1.5) 0 var(--seeds-space-lg) 0;
  }
}

@media (max-width: 480px) {
  .seeds-footer-grid {
    grid-template-columns: 1fr;
    gap: calc(var(--seeds-space-lg) * 1.5);
  }
}

/* ===== SIMPLE FAQ - PLAIN TEXT ===== */
.seeds-faq-category {
  margin-bottom: calc(var(--seeds-space-3xl) * 2);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.seeds-faq-category-title {
  font-size: var(--seeds-text-2xl);
  font-weight: 700;
  color: var(--seeds-text-primary);
  margin-bottom: calc(var(--seeds-space-xl) * 1.5);
  text-align: left;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.seeds-faq-item {
  margin-bottom: calc(var(--seeds-space-xl) * 1.5);
}

.seeds-faq-question {
  font-size: var(--seeds-text-lg);
  font-weight: 600;
  color: var(--seeds-text-primary);
  margin-bottom: var(--seeds-space-md);
  line-height: 1.4;
}

.seeds-faq-answer {
  font-size: var(--seeds-text-base);
  color: var(--seeds-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== NEWS LOGOS SECTION ===== */
.seeds-news-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: calc(var(--seeds-space-xl) * 1.5);
  align-items: center;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.seeds-news-logo-link {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.seeds-news-logo-link:hover {
  transform: scale(1.05);
}

.seeds-news-logo {
  height: 64px;
  width: auto;
  max-width: 300px;
  opacity: 0.85;
  transition: all 0.3s ease;
  object-fit: contain;
  display: block;
}

.seeds-news-logo-link:hover .seeds-news-logo {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .seeds-news-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--seeds-space-lg);
  }
  
  .seeds-news-logo {
    height: 48px;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .seeds-news-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--seeds-space-md);
  }
  
  .seeds-news-logo {
    height: 36px;
    max-width: 160px;
  }
}
/* ===== END NEWS LOGOS SECTION =====  */