/* GRG Fine Foods - Main Stylesheet */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --primary: #6B3410;
  --primary-light: #8B4513;
  --amber-500: #F59E0B;
  --amber-600: #D97706;
  --orange-500: #F97316;
  --orange-600: #EA580C;
  --green-500: #22C55E;
  --green-600: #16A34A;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --purple-500: #8B5CF6;
  --purple-600: #7C3AED;
  --gold: #FFD700;
  --brown: #8B4513;
  --brown-dark: #6B3410;
  
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-muted: #f9fafb;
  --border: #e5e7eb;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
  --shadow-2xl: 0 25px 50px rgba(0,0,0,0.25);
  
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.min-h-screen {
  min-height: 100vh;
}

/* ============================================
   Header
   ============================================ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.mobile-menu-btn:hover {
  background: var(--bg-muted);
}

.menu-icon {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .logo-img { height: 48px; }
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .mobile-menu-btn { display: block; }
}

@media (min-width: 768px) {
  .logo-img { height: 64px; }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 665px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 665px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  max-height: 700px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(107, 52, 16, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(107, 52, 16, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 900px;
  color: #fff;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.spego-badge {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
}

.title-line {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  color: #ffd700;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-wrapper {
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  background: #fff;
}

.hero-cta svg {
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(5px);
}

.spego-cta {
  background: rgba(34, 197, 94, 0.95);
  color: #fff;
}

.spego-cta:hover {
  background: var(--green-500);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-feature-item svg {
  color: #ffd700;
  flex-shrink: 0;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #fff;
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.hero-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }

@media (min-width: 768px) {
  .hero-prev { left: 2rem; }
  .hero-next { right: 2rem; }
  .hero-nav {
    width: 64px;
    height: 64px;
  }
  .hero-nav svg {
    width: 32px;
    height: 32px;
  }
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-dot.active {
  width: 48px;
  background: #fff;
  border-color: #ffd700;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@media (min-width: 768px) {
  .hero-indicators { 
    bottom: 2rem; 
    gap: 1rem; 
  }
  .hero-dot { 
    width: 16px; 
    height: 16px; 
  }
  .hero-dot.active { 
    width: 64px; 
  }
}

.scroll-down-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

.arrow {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.arrow span {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(45deg);
  animation: arrowDown 1.5s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

@keyframes arrowDown {
  0%, 100% {
    opacity: 0;
    transform: rotate(45deg) translateY(-5px);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translateY(0);
  }
}

@media (max-width: 768px) {
  .scroll-down-indicator {
    bottom: 3rem;
  }
  .hero-content {
    padding: 1.5rem;
  }
  .hero-features {
    gap: 1rem;
  }
  .hero-feature-item {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
  .hero-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ============================================
   Section Styles
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 9999px;
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-bottom: 2rem;
}

.section-badge.purple {
  background: linear-gradient(to right, rgba(139,92,246,0.1), rgba(139,92,246,0.1));
  border-color: rgba(139,92,246,0.2);
  color: var(--purple-600);
}

.section-badge.amber {
  background: linear-gradient(to right, rgba(245,158,11,0.1), rgba(249,115,22,0.1));
  border-color: rgba(245,158,11,0.2);
  color: var(--primary);
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-description {
  font-size: 1.5rem;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.section-description-sm {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   Video Section
   ============================================ */
.video-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--gold), #FFC107, var(--orange-500));
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: 
    radial-gradient(circle at 20% 20%, rgba(245,158,11,0.5) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(249,115,22,0.5) 0%, transparent 50%);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 4rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 4px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  aspect-ratio: 16/9;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  position: relative;
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.8);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-xl);
}

.feature-icon.amber {
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

.feature-icon.orange {
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #fff;
  stroke: #fff;
}

.feature-card h4 {
  color: var(--brown-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--brown);
  line-height: 1.6;
}

.cta-center {
  text-align: center;
}

.cta-center p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.brochure-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .brochure-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.btn-gradient {
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-gradient.spego {
  background: linear-gradient(to right, var(--purple-600), #4F46E5, var(--purple-600));
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(to right, var(--amber-600), var(--orange-600), var(--amber-600));
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 9999px;
  box-shadow: var(--shadow-2xl);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  background: linear-gradient(to right, var(--primary), var(--purple-600), #4F46E5);
  color: #fff;
  font-size: 1.25rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  transition: var(--transition);
}

.btn-gradient:hover {
  transform: scale(1.05);
}

.btn-gradient svg {
  width: 32px;
  height: 32px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: #fff;
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: scale(1.05);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.125rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 1rem;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.25);
}

/* ============================================
   Brochure Section
   ============================================ */
.brochure-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #F3E8FF, #E0E7FF, #DBEAFE);
  overflow: hidden;
}

.brochure-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(168,85,247,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(99,102,241,0.3) 0%, transparent 50%);
}

.brochure-card {
  position: relative;
  background: linear-gradient(135deg, #fff, #f9fafb);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  border: 2px solid rgba(255,255,255,0.6);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .brochure-card { padding: 4rem; }
}

.brochure-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.brochure-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid #f3f4f6;
}

.brochure-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brochure-icon.purple {
  background: linear-gradient(135deg, var(--primary), rgba(107,52,16,0.7));
}

.brochure-icon.green {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
}

.brochure-icon.purple-dark {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
}

.brochure-icon.amber {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
}

.brochure-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.brochure-feature h4 {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.brochure-feature p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.muted-text {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

.cta-text {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.primary-link {
  color: var(--primary);
  transition: var(--transition);
}

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

/* ============================================
   About Section
   ============================================ */
.about-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(to bottom, rgba(255,247,237,0.5), #fff, rgba(255,237,213,0.3));
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 384px;
  height: 384px;
  background: rgba(254,215,170,0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(254,215,170,0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 4rem auto;
  max-width: 1100px;
}

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

.stat-card {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(107,52,16,0.1);
  transition: var(--transition);
}

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

@media (min-width: 768px) {
  .stat-card { padding: 2.5rem; }
}

.stat-card.primary-border { border-color: rgba(107,52,16,0.1); }
.stat-card.amber-border { border-color: rgba(245,158,11,0.2); }
.stat-card.green-border { border-color: rgba(34,197,94,0.2); }
.stat-card.blue-border { border-color: rgba(59,130,246,0.2); }

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .stat-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }
  .stat-icon svg {
    width: 40px;
    height: 40px;
  }
}

.stat-icon.primary {
  background: linear-gradient(135deg, var(--primary), rgba(107,52,16,0.7));
}

.stat-icon.amber {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
}

.stat-icon.green {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
}

.stat-icon.blue {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .stat-number { 
    font-size: 3.75rem;
    min-height: 4.5rem;
  }
}

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

@media (min-width: 768px) {
  .stat-label { font-size: 1.125rem; }
}

/* Certifications */
.certifications-section {
  margin: 4rem 0;
}

.section-subtitle-white {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 4rem;
}

.cert-banner {
  background: linear-gradient(to right, #059669, #16A34A, #14B8A6);
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  border: 2px solid rgba(21,128,61,0.3);
  position: relative;
  overflow: hidden;
}

.cert-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMSIgb3BhY2l0eT0iMC4xIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+");
  opacity: 0.2;
}

.cert-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.cert-header svg {
  width: 56px;
  height: 56px;
  stroke: #fff;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.cert-header h4 {
  color: #fff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  text-align: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.cert-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}

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

.cert-badge {
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.cert-badge:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.05);
}

.cert-badge:last-child {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .cert-badge:last-child { grid-column: span 1; }
}

.cert-badge svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  margin: 0 auto 0.75rem;
}

.cert-badge p {
  color: #fff;
  font-size: 0.9rem;
}

.cert-text {
  color: rgba(255,255,255,0.95);
  text-align: center;
  margin-top: 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
  position: relative;
}

/* Vision Card */
.vision-card {
  max-width: 800px;
  margin: 4rem auto 0;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(107,52,16,0.05), rgba(107,52,16,0.1), rgba(107,52,16,0.05));
  border-radius: 1.5rem;
  border: 2px solid rgba(107,52,16,0.2);
  text-align: center;
}

.vision-icon {
  width: 64px;
  height: 64px;
  stroke: var(--primary);
  margin: 0 auto 1.5rem;
}

.vision-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.vision-card p {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.8;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
  position: relative;
}

.products-header {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fff, rgba(243,244,246,0.2));
  text-align: center;
}

/* Revathi Brand */
.brand-section.revathi {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--gold), #FFC107, var(--orange-500));
  overflow: hidden;
}

.brand-section.revathi::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(transparent 0deg, transparent 2deg, rgba(255,255,255,0.5) 2deg, rgba(255,255,255,0.5) 4deg);
  opacity: 0.2;
}

.brand-section.revathi::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 40px;
  width: 288px;
  height: 288px;
  background: rgba(251,191,36,0.3);
  border-radius: 50%;
  filter: blur(48px);
}

/* Spego Brand */
.brand-section.spego {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #3f3d7e, #5b4b9a, #7c6bb8);
  overflow: hidden;
}

.brand-section.spego::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(168,85,247,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(74,222,128,0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(99,102,241,0.3) 0%, transparent 50%);
  opacity: 0.3;
}

.brand-section.spego::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.1) 35px, rgba(255,255,255,0.1) 70px);
  opacity: 0.1;
}

.brand-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.brand-logo-wrapper {
  display: inline-block;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-2xl);
  border: 2px solid rgba(255,255,255,0.6);
}

.brand-logo-wrapper.spego-logo {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.brand-logo {
  height: 128px;
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.brand-logo-wrapper.spego-logo .brand-logo {
  height: 144px;
  filter: brightness(1.1) drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

.brand-tagline {
  font-size: 2.5rem;
  font-style: italic;
  font-family: Georgia, serif;
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.brand-tagline.white {
  color: #fff;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.divider-line {
  height: 4px;
  width: 80px;
  background: var(--brown);
  border-radius: 2px;
}

.brand-divider svg {
  width: 24px;
  height: 24px;
  stroke: var(--brown);
}

.brand-divider.green .divider-line {
  background: #8BE58B;
}

.brand-divider.green svg {
  stroke: #8BE58B;
}

.brand-description {
  font-size: 1.5rem;
  color: var(--brown-dark);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.brand-description.white {
  color: rgba(255,255,255,0.95);
}

.brand-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

.brand-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .brand-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .brand-content.reverse {
    direction: rtl;
  }
  
  .brand-content.reverse > * {
    direction: ltr;
  }
  
  .brand-info {
    width: 100%;
    max-width: 100%;
  }
}

.brand-image-wrapper {
  position: relative;
}

.brand-image-bg {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  transform: rotate(3deg);
}

.brand-image-bg.spego {
  background: rgba(255,255,255,0.2);
  transform: rotate(-3deg);
}

.brand-image-card {
  position: relative;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-2xl);
  border: 4px solid rgba(255,255,255,0.6);
}

.brand-image-card.spego {
  background: rgba(255,255,255,0.9);
}

.brand-product-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.brand-badge {
  position: absolute;
  top: -24px;
  right: -24px;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--amber-600), var(--orange-600));
  color: #fff;
  font-size: 1.125rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-xl);
  transform: rotate(12deg);
}

.brand-badge.spego {
  top: -24px;
  left: -24px;
  right: auto;
  background: linear-gradient(to right, var(--purple-600), #4F46E5);
  transform: rotate(-12deg);
}

.brand-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
}

.product-variants {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.6);
  width: 100%;
  min-height: auto;
  overflow: visible;
}

.product-variants.spego-variants {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.variants-title {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.variant-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-height: auto;
}

.variant-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.6);
  padding: 1rem;
  border-radius: 0.75rem;
  width: 100%;
  opacity: 1;
  visibility: visible;
  position: relative;
}

.variant-item.spego {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}

.variant-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--brown);
  flex-shrink: 0;
  margin-top: 2px;
}

.variant-item.spego svg {
  stroke: #8BE58B;
}

.variant-name {
  font-weight: 600;
  color: var(--brown-dark);
}

.variant-item.spego .variant-name {
  color: #fff;
}

.variant-desc {
  font-size: 0.875rem;
  color: var(--brown);
}

.variant-item.spego .variant-desc {
  color: rgba(255,255,255,0.8);
}

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

.product-feature {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,0.5);
}

.product-features.spego .product-feature {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
}

.product-feature svg {
  width: 32px;
  height: 32px;
  margin: 0 auto 0.75rem;
}

.product-feature svg.green { stroke: #15803D; }
.product-feature svg.blue { stroke: #1D4ED8; }
.product-feature svg.purple { stroke: #7C3AED; }
.product-feature svg.amber { stroke: var(--amber-600); }
.product-feature svg.green-light { stroke: #8BE58B; }
.product-feature svg.gold { stroke: var(--gold); }

.product-feature p {
  color: var(--brown);
  font-size: 0.9rem;
}

.product-features.spego .product-feature p {
  color: #fff;
}

/* ============================================
   Quality Promise Section
   ============================================ */
.quality-promise-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff, #f9fafb, #fff);
  overflow: hidden;
}

.quality-promise-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(to bottom, rgba(251, 207, 232, 0.4), rgba(251, 207, 232, 0.2), rgba(251, 207, 232, 0.3));
  border-radius: 1.5rem;
  border: 2px solid rgba(236, 72, 153, 0.3);
  text-align: center;
}

@media (min-width: 768px) {
  .quality-promise-card {
    padding: 4rem;
  }
}

.quality-promise-card .section-title {
  margin-bottom: 3rem;
  color: var(--primary);
  font-weight: 700;
}

.quality-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .quality-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.quality-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  text-align: left;
}

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

.quality-icon {
  width: 64px;
  height: 64px;
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 207, 232, 0.3);
  border-radius: 50%;
  border: 2px solid rgba(107,52,16,0.1);
}

.quality-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  stroke-width: 2;
}

.quality-card h4 {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.quality-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #FFEDD5, #FEF3C7, #FEF9C3);
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107,52,16,0.2) 0%, transparent 70%);
  filter: blur(48px);
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  filter: blur(48px);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
  position: relative;
}

.contact-card {
  position: relative;
  background: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(107,52,16,0.2);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.contact-card:nth-child(2) {
  border-color: rgba(34,197,94,0.2);
}

.contact-card:nth-child(3) {
  border-color: rgba(59,130,246,0.2);
}

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

.contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-xl);
}

.contact-icon.primary {
  background: linear-gradient(135deg, var(--primary), rgba(107,52,16,0.7));
}

.contact-icon.green {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
}

.contact-icon.blue {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
}

.contact-icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
}

.contact-card h4 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-highlight {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Partner CTA */
.partner-cta {
  position: relative;
  background: linear-gradient(135deg, var(--primary), var(--amber-600));
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .partner-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4rem;
  }
}

.partner-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.15) 35px, rgba(255,255,255,0.15) 70px);
  opacity: 0.1;
}

.partner-cta::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(48px);
}

.partner-content {
  position: relative;
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .partner-content { text-align: left; }
}

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

@media (min-width: 768px) {
  .partner-header { justify-content: flex-start; }
}

.partner-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-icon svg {
  width: 40px;
  height: 40px;
  stroke: #fff;
}

.partner-header h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.partner-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.95);
}

.partner-content p:last-child {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
}

.partner-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: linear-gradient(to bottom, var(--text), rgba(26,26,26,0.9));
  color: #fff;
  padding: 4rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-badges span {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-social {
  margin-top: 2rem;
}

.footer-social h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  padding: 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
}

.social-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-link span {
  font-size: 0.875rem;
}

.social-link.facebook:hover {
  color: #1877F2;
}

.social-link.instagram:hover {
  color: #E4405F;
}

.social-link.youtube:hover {
  color: #FF0000;
}

.social-link.linkedin:hover {
  color: #0077B5;
}

.footer-brands {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand {
  background: rgba(255,255,255,0.1);
  padding: 0.75rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
}

.footer-brand-logo {
  height: 56px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer-brand-logo.spego {
  mix-blend-mode: screen;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links li a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.footer-links li a:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  color: rgba(255,255,255,0.7);
}

.footer-contact-item strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}

.footer-contact-item p {
  font-size: 0.875rem;
  margin: 0;
}

.footer-contact-item a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

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

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

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

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: #fff;
}

/* ============================================
   Utility Classes
   ============================================ */
.primary-text { color: var(--primary); }
.brown-text { color: var(--brown); }
.gold-text { color: var(--brown-dark); }
.amber-text { color: var(--amber-600); }
.green-text { color: #8BE58B; }
.blue-text { color: var(--blue-600); }
.white { color: #fff; }

