/* ============================================ */
/* HERO SECTION - TAILORED TO FIGMA DESIGN      */
/* ============================================ */

.home-hero {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom right, rgba(240,253,250,1), rgba(255,255,255,1), rgba(255,255,255,1));
}

.home-hero h1 {
  font-size: 3.75rem; /* 60px - matching 5xl/6xl */
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #111827;
}

@media (min-width: 768px) {
  .home-hero h1 { 
    font-size: 3.75rem;
    line-height: 1.1;
  }
}

.home-hero p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4b5563;
  font-weight: 400;
}

.home-hero .badge {
  background: rgba(16,185,89,0.1);
  border-color: rgba(16,185,89,0.3);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  font-size: 0.875rem;
  color: #059669;
  border: 1px solid;
}

/* Features card container */
.features-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 3rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229,231,235,1);
  box-shadow: 0 20px 48px rgba(0,0,0,0.06);
}

.feature-tile {
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
  background: linear-gradient(to bottom right, rgba(249,250,251,1), rgba(255,255,255,1));
  border: 2px solid rgba(226,232,240,0.8);
  transition: all 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: rgba(16,185,89,0.2);
}

.feature-tile h3 {
  color: #111827;
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-tile p {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 400;
}

.feature-tile--highlight {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  box-shadow: 0 12px 32px rgba(16,185,89,0.2);
}

.feature-tile--highlight h3,
.feature-tile--highlight p {
  color: #fff;
}

.feature-tile--highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(16,185,89,0.28);
}

/* Dark-mode overrides for hero feature cards: improve contrast and readability */
:is(.dark) .home-hero .features-card {
  background: #07151b !important;
  border-color: rgba(255,255,255,0.04) !important;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6) !important;
}

:is(.dark) .home-hero .feature-tile {
  background: linear-gradient(180deg, #0b1724 0%, #07121a 100%) !important;
  border-color: rgba(255,255,255,0.04) !important;
  color: #e6eef8 !important;
  box-shadow: 0 10px 30px rgba(2,6,23,0.6) !important;
}

:is(.dark) .home-hero .feature-tile h3 {
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.35) !important;
}

:is(.dark) .home-hero .feature-tile p {
  color: #c7d2de !important;
  opacity: 1 !important;
}

:is(.dark) .home-hero .features-card .feature-tile.feature-tile--highlight {
  /* keep highlight vivid on dark */
  background: linear-gradient(135deg,#059669,#10b981) !important;
  color: #fff !important;
  box-shadow: 0 18px 40px rgba(16,185,129,0.18) !important;
}

/* Primary CTA Button */
.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 20px 48px rgba(16,185,89,0.2);
  padding: 1rem 2rem;
  border-radius: 0.875rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover {
  box-shadow: 0 28px 64px rgba(16,185,89,0.28);
  transform: translateY(-2px);
}

/* ============================================ */
/* PROVEN DELIVERY SECTION                     */
/* ============================================ */

.proven-delivery-section {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}

.proven-delivery-section h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 1rem;
}

.proven-delivery-section p {
  font-size: 1.25rem;
  color: #4b5563;
  line-height: 1.8;
}

/* ============================================ */
/* ACCELERATORS SECTION                        */
/* ============================================ */

.accelerators-section {
  padding: 5rem 0;
  background: #fff;
}

.accelerators-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 1rem;
}

.accelerators-section > div:nth-child(2) > p {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 4rem;
}

.accelerator-card {
  background: #fff;
  border: 2px solid rgba(226,232,240,1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.accelerator-card:hover {
  border-color: rgba(16,185,89,0.3);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.accelerator-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 1rem 0 1rem 0;
}

.accelerator-card p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.accelerator-metric {
  border-top: 1px solid rgba(226,232,240,1);
  padding-top: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============================================ */
/* ENGAGEMENT MODELS SECTION                   */
/* ============================================ */

.engagement-section {
  padding: 5rem 0;
  background: rgba(249,250,251,1);
}

.engagement-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 1rem;
}

.engagement-section > div:first-of-type > p {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 4rem;
}

.engagement-model-card {
  background: #fff;
  border: 2px solid rgba(226,232,240,1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.engagement-model-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.engagement-model-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 1rem 0 1rem 0;
}

.engagement-model-card p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.engagement-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #1f2937;
}

.engagement-features li::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(16,185,89,0.15);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  position: relative;
}

.engagement-features li::after {
  content: '';
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: #10b981;
  border-radius: 50%;
  top: 0.875rem;
  left: 0.375rem;
  margin-top: -0.875rem;
  margin-left: -0.75rem;
}

/* ============================================ */
/* A3IO VALUES SECTION                         */
/* ============================================ */

.values-section {
  padding: 5rem 0;
  background: #fff;
}

.values-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 1rem;
}

.values-section > div:first-of-type > p {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 4rem;
}

.values-card {
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid;
  transition: all 0.3s ease;
}

.values-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.values-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 1rem 0 0.75rem 0;
}

.values-card p {
  color: #4b5563;
  line-height: 1.6;
  font-size: 0.95rem;
}

.values-card.ambition {
  background: rgba(16,185,89,0.05);
  border-color: rgba(16,185,89,0.2);
}

.values-card.agility {
  background: rgba(251,191,36,0.05);
  border-color: rgba(251,191,36,0.2);
}

.values-card.achievement {
  background: rgba(239,68,68,0.05);
  border-color: rgba(239,68,68,0.2);
}

.values-card.innovation {
  background: rgba(16,185,89,0.05);
  border-color: rgba(16,185,89,0.2);
}

/* ============================================ */
/* WHY PARTNER SECTION                         */
/* ============================================ */

.partner-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, rgba(249,250,251,1), rgba(240,253,250,1));
}

.partner-section h2 {
  font-size: 2.25rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 1rem;
}

.partner-section > div:first-of-type > p {
  text-align: center;
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 4rem;
}

.partner-card {
  background: #fff;
  border: 1px solid rgba(226,232,240,1);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.partner-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.partner-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 1rem 0 0.75rem 0;
}

.partner-card p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.partner-metric {
  font-size: 0.875rem;
  color: #10b981;
  font-style: italic;
}

/* ============================================ */
/* CTA SECTION                                  */
/* ============================================ */

.cta-section {
  background: linear-gradient(to bottom right, #10b981, #059669);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.cta-button {
  padding: 1rem 2rem;
  border-radius: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button.primary {
  background: #fbbf24;
  color: #111827;
}

.cta-button.primary:hover {
  background: #f59e0b;
  transform: scale(1.05);
}

.cta-button.secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.cta-button.secondary:hover {
  background: rgba(255,255,255,0.3);
}

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

footer {
  background: #111827;
  color: #d1d5db;
  padding: 4rem 0 2rem;
}

footer h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

footer a:hover {
  color: #10b981;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .home-hero {
    padding: 3rem 0;
  }
  
  .home-hero h1 {
    font-size: 2.25rem;
  }
  
  .features-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1.5rem;
  }
  
  .partner-section .partner-card,
  .accelerator-card,
  .engagement-model-card {
    padding: 1.5rem;
  }
}
