/* Vuba Vuba - Static HTML Styles */
/* Modern CSS Variables and Design System - Inspired by Glovo & Jumia */

/* Rubik Font - Local */
@font-face {
  font-family: 'Rubik';
  src: url('assets/fonts/Rubik-Variable.woff2') format('woff2-variations');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Vuba Vuba Brand Colors - Green Primary */
  --primary: #008f43;
  --primary-hover: #007a3a;
  --primary-light: #00a64d;
  --primary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --secondary: #f8f9fa;
  --secondary-foreground: #1a1a1a;
  --muted: #f8f9fa;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --ring: #008f43;

  /* Accent color for highlights */
  --accent: #ffc244;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #008f43 0%, #006d33 100%);
  --gradient-dark: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  --gradient-light: linear-gradient(135deg, #e8f5ee 0%, #d4eddf 100%);

  /* Spacing */
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* Fonts - Clean and modern like Glovo */
  --font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h1 {
  font-weight: 800;
}

h2 {
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header nav {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 2.5rem;
  width: auto;
}

@media (min-width: 1024px) {
  .logo-img {
    height: 3rem;
  }
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav-links {
  display: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

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

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s, background-color 0.2s;
  border-radius: 0.5rem;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
  background-color: rgba(0, 143, 67, 0.05);
}

/* Buttons - Modern Jumia/Glovo inspired */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 2px 8px rgba(0, 143, 67, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(0, 143, 67, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--foreground);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background-color: var(--secondary);
  border-color: var(--muted-foreground);
}

.btn-outline-light {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--primary-foreground);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--primary);
  font-weight: 500;
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--muted-foreground);
}

.btn-ghost:hover {
  background-color: var(--secondary);
  color: var(--foreground);
}

/* Button with flag */
.btn-with-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

/* Cards */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card-content {
  padding: 1.75rem;
}

@media (min-width: 1024px) {
  .card-content-lg {
    padding: 2.5rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.95;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0zNiAxOGMtOS45NDEgMC0xOCA4LjA1OS0xOCAxOHM4LjA1OSAxOCAxOCAxOCAxOC04LjA1OSAxOC0xOC04LjA1OS0xOC0xOC0xOHoiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIiBzdHJva2Utd2lkdGg9IjIiLz48L2c+PC9zdmc+");
  opacity: 0.2;
}

/* Hero with background image - Home page: 2/3rd viewport */
.hero-with-image {
  position: relative;
  overflow: visible;
  padding-top: 5rem;
  min-height: 66.67vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .hero-with-image {
    min-height: 66.67vh;
  }
}

/* Inside pages hero - 1/3rd of home (about 22vh) */
.hero-with-image.hero-small {
  min-height: 35vh;
}

@media (min-width: 1024px) {
  .hero-with-image.hero-small {
    min-height: 40vh;
  }
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 143, 67, 0.75) 50%, rgba(0, 109, 51, 0.85) 100%);
}

/* Hero curved bottom */
.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-curve {
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .hero-curve {
    height: 100px;
  }
}

.hero-curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8rem 0 6rem;
  z-index: 1;
  text-align: center;
}

.hero-content .max-w-3xl {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    align-items: center;
    justify-content: flex-start;
    padding: 6rem 0 8rem;
    text-align: left;
  }

  .hero-content .max-w-3xl {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 0 10rem;
  }
}

/* Hero content positioned right - desktop only */
@media (min-width: 768px) {
  .hero-content.hero-content-right {
    justify-content: flex-end;
  }

  .hero-content.hero-content-right .max-w-3xl {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    max-width: 600px !important;
  }

  .hero-content-right .hero-buttons {
    justify-content: flex-end;
  }
}

/* Hero with image text styles - Large, bold typography like Glovo */
.hero-with-image h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .hero-with-image h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-with-image h1 {
    font-size: 4.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-with-image h1 {
    font-size: 5rem;
  }
}

.hero-with-image p {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .hero-with-image p {
    font-size: 1.25rem;
  }
}

.hero-with-image .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-with-image .hero-buttons {
    flex-direction: row;
    gap: 1.25rem;
    align-items: flex-start;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .hero-inner {
    padding: 7rem 0;
  }
}

.hero h1 {
  font-size: 2.25rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
}

@media (min-width: 1024px) {
  .hero p {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Country Selector - Bigger, more prominent */
.country-selector {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transform: translateY(50%);
}

@media (min-width: 768px) {
  .country-selector {
    transform: translateY(20%);
  }
}

.country-cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 0.75rem;
}

@media (min-width: 640px) {
  .country-cards {
    gap: 2rem;
    padding: 0;
  }
}

.country-card {
  flex: 1;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.2);
  border: none;
  transition: all var(--transition-base);
  text-decoration: none;
  text-align: center;
}

@media (min-width: 640px) {
  .country-card {
    flex: 0 0 auto;
    max-width: none;
    min-width: 300px;
    flex-direction: row;
    gap: 1.5rem;
    padding: 2.25rem 3rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.2);
    text-align: left;
  }
}

.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.3);
}

.country-card .flag {
  width: 48px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .country-card .flag {
    width: 72px;
    height: 54px;
    border-radius: 6px;
  }
}

.country-card .flag svg,
.country-card .flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card .name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
}

@media (min-width: 640px) {
  .country-card .name {
    font-size: 1.75rem;
  }
}

.country-card .url {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .country-card .url {
    font-size: 1.125rem;
  }
}

/* Stats Section - Glovo inspired large numbers */
.stats-section {
  padding: 6rem 0 4rem;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .stats-section {
    padding: 6rem 0 5rem;
  }
}

@media (min-width: 1024px) {
  .stats-section {
    padding: 7rem 0 6rem;
  }
}

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

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1.25rem;
  color: var(--primary);
  opacity: 0.9;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

@media (min-width: 1024px) {
  .stat-value {
    font-size: 3.5rem;
  }
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

/* Section Styles - More whitespace like Glovo */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

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

.section-dark {
  background: var(--foreground);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 2.75rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header-light h2,
.section-header-light p {
  color: var(--primary-foreground);
}

.section-header-light p {
  opacity: 0.8;
}

/* Services Grid */
.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2rem;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted-foreground);
}

/* CTA Section - Modern dark style */
.cta-section {
  padding: 5rem 0;
  background: var(--foreground);
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 7rem 0;
  }
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

@media (min-width: 1024px) {
  .cta-content h2 {
    font-size: 2.75rem;
  }
}

.cta-content p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    gap: 1.25rem;
  }
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .footer {
    padding: 4rem 0;
  }
}

/* Simple Footer - Single line */
.footer.footer-simple {
  padding: 1.5rem 0;
}

.footer-bottom-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-simple {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.footer-bottom-simple .footer-logo {
  display: inline-flex;
}

.footer-bottom-simple .footer-logo .logo-img {
  height: 2rem;
}

.footer-bottom-simple p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.footer-contact-item a {
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-section h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--background);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

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

.footer-country-btns {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-country-btn {
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.footer-country-btn:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.footer-country-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Simple footer - no margin/border since there's no content above */
.footer.footer-simple .footer-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom .footer-logo {
  display: inline-flex;
}

.footer-bottom .footer-logo .logo-img {
  height: 2rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

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

/* Hover Effects - Subtle and professional */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Grid Utilities */
.grid {
  display: grid;
}

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

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

/* Form Elements - Clean, modern inputs */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 143, 67, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SVG Icons */
.icon {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-lg {
  width: 2rem;
  height: 2rem;
}

/* Badge - Modern pill style */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 9999px;
  background-color: rgba(0, 143, 67, 0.1);
  color: var(--primary);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted-foreground);
}

.text-white {
  color: #ffffff;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

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

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}

@media (min-width: 768px) {
  .timeline-line {
    display: block;
  }
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.timeline-marker {
  display: none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  z-index: 1;
}

@media (min-width: 768px) {
  .timeline-marker {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.timeline-content {
  flex: 1;
}

.timeline-year {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .timeline-year {
    display: none;
  }
}

/* Modern Interactive Timeline */
.timeline-modern {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-track {
  position: relative;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 3rem;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -2.25rem;
  margin-bottom: 2.5rem;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  position: relative;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.dot-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--border);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.timeline-item.active .dot-inner,
.timeline-dot:hover .dot-inner {
  width: 20px;
  height: 20px;
  background: var(--primary);
}

.dot-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.active .dot-ring {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.dot-year {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.timeline-item.active .dot-year {
  color: var(--primary);
  font-weight: 700;
}

.dot-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 143, 67, 0.3);
  border-radius: 50%;
  animation: ripple 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Timeline Detail Panel */
.timeline-detail-panel {
  position: relative;
  min-height: 180px;
}

.timeline-detail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.timeline-detail.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.detail-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gradient-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.timeline-detail h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.timeline-detail p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* Mobile timeline adjustments */
@media (max-width: 640px) {
  .timeline-items {
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .timeline-item {
    flex-shrink: 0;
  }

  .timeline-dot {
    width: 40px;
    height: 40px;
  }

  .dot-year {
    font-size: 0.75rem;
  }

  .timeline-detail {
    flex-direction: column;
    padding: 1.5rem;
  }

  .detail-icon {
    width: 48px;
    height: 48px;
  }

  .detail-icon svg {
    width: 24px;
    height: 24px;
  }

  .timeline-detail h3 {
    font-size: 1.125rem;
  }

  .timeline-detail p {
    font-size: 0.9375rem;
  }
}

/* Horizontal Timeline - Legacy (keeping for backwards compatibility) */
.timeline-horizontal {
  position: relative;
  overflow-x: auto;
  padding: 2rem 0;
  -webkit-overflow-scrolling: touch;
}

.timeline-h-line {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 2px;
}

.timeline-h-items {
  display: flex;
  gap: 1rem;
  min-width: max-content;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .timeline-h-items {
    gap: 1.5rem;
    justify-content: space-between;
    min-width: 100%;
  }
}

.timeline-h-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  flex: 1;
}

@media (min-width: 768px) {
  .timeline-h-item {
    min-width: 140px;
  }
}

.timeline-h-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 143, 67, 0.3);
}

.timeline-h-content {
  margin-top: 1.25rem;
  text-align: center;
  padding: 0 0.5rem;
}

.timeline-h-content h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.timeline-h-content p {
  font-size: 0.8125rem;
  line-height: 1.4;
}

/* Team Grid */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  text-align: center;
  padding: 1.5rem;
}

.team-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: rgba(0, 143, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.team-avatar svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.team-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Markets */
.market-overview-section {
  display: none;
}

@media (min-width: 768px) {
  .market-overview-section {
    display: none;
  }
}

.market-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(0, 143, 67, 0.05) 0%, rgba(0, 143, 67, 0.1) 100%);
}

@media (min-width: 1024px) {
  .market-map {
    flex-direction: row;
    gap: 4rem;
  }
}

.market-point {
  text-align: center;
}

.market-flag {
  display: block;
  width: 80px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 auto;
}

.market-flag svg,
.market-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .market-flag {
    width: 100px;
    height: 67px;
  }
}

.market-connector {
  display: none;
  width: 8rem;
  height: 2px;
  background-color: rgba(0, 143, 67, 0.3);
  position: relative;
}

@media (min-width: 1024px) {
  .market-connector {
    display: block;
  }
}

.market-connector-v {
  display: block;
  width: 2px;
  height: 4rem;
  background-color: rgba(0, 143, 67, 0.3);
  position: relative;
}

@media (min-width: 1024px) {
  .market-connector-v {
    display: none;
  }
}

.market-connector svg,
.market-connector-v svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
}

.market-connector-v svg {
  transform: translate(-50%, -50%) rotate(90deg);
}

.market-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--primary);
  margin: 1rem auto 0;
}

.market-coming {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 143, 67, 0.2);
}

/* Market Detail */
.market-detail {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .market-detail {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .market-detail.reverse .market-info {
    order: 2;
  }

  .market-detail.reverse .market-stats-grid {
    order: 1;
  }
}

.market-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.market-header-flag {
  display: block;
  width: 60px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.market-header-flag svg,
.market-header-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-highlights {
  list-style: none;
  margin-bottom: 2rem;
}

.market-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.market-highlights li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--primary);
}

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

/* Metrics */
.metrics-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  padding: 1.5rem;
}

.metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.metric-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.metric-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Documents */
.document-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.document-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.document-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(0, 143, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.document-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.document-name {
  font-weight: 600;
  color: var(--foreground);
}

.document-meta {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* News */
.news-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.news-featured {
  overflow: hidden;
}

.news-image {
  height: 12rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-image span {
  font-size: 4rem;
  opacity: 0.2;
  transition: transform 0.3s;
}

.news-featured:hover .news-image span {
  transform: scale(1.1);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.news-date svg {
  width: 1rem;
  height: 1rem;
}

.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.news-featured:hover .news-title {
  color: var(--primary);
}

.news-excerpt {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* News List */
.news-list-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .news-list-item {
    flex-direction: row;
    align-items: center;
  }
}

.news-list-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news-list-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

.news-list-content {
  flex: 1;
}

.news-list-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.news-list-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Category Filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Newsletter */
.newsletter-card {
  background: var(--gradient-dark);
  border: none;
}

.newsletter-card .card-content {
  padding: 2rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .newsletter-card .card-content {
    padding: 3rem;
  }
}

.newsletter-card h2 {
  font-size: 1.5rem;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .newsletter-card h2 {
    font-size: 1.875rem;
  }
}

.newsletter-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background-color: var(--background);
  color: var(--foreground);
}

.newsletter-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.office-card {
  padding: 1.5rem;
}

.office-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.office-flag {
  display: block;
  width: 36px;
  height: 24px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.office-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.office-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.office-detail svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.office-detail span,
.office-detail a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.office-detail a {
  transition: color 0.2s;
}

.office-detail a:hover {
  color: var(--primary);
}

.general-inquiries {
  background-color: rgba(0, 143, 67, 0.05);
  border-color: rgba(0, 143, 67, 0.2);
}

.general-inquiries h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.general-inquiries a {
  color: var(--primary);
  font-weight: 500;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem 0;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.success-message h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--card);
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background-color: rgba(0, 143, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.value-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.value-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.highlight-card {
  padding: 1.5rem;
}

.highlight-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.highlight-text {
  color: var(--muted-foreground);
}

/* Spacer for fixed header */
.header-spacer {
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-spacer {
    height: 5rem;
  }
}
