/* ==========================================
   GLIMMER SAFARI - INDUSTRIAL MODERN CSS
   ========================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #E8E8E8;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #F5F5F5;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h2 {
  font-size: 36px;
  color: #D4AF37;
  border-left: 4px solid #D4AF37;
  padding-left: 20px;
  margin-bottom: 32px;
}

h3 {
  font-size: 24px;
  color: #B8B8B8;
}

h4 {
  font-size: 20px;
  color: #9A9A9A;
}

p {
  margin-bottom: 16px;
  color: #CCCCCC;
  font-size: 16px;
}

a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #F0C34A;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
  color: #CCCCCC;
}

strong {
  color: #F5F5F5;
  font-weight: 600;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  background: linear-gradient(to bottom, #0D0D0D 0%, #1A1A1A 100%);
  border-bottom: 2px solid #333333;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #B8B8B8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #D4AF37;
  border-bottom-color: #D4AF37;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: #D4AF37;
  color: #0D0D0D;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #F0C34A;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #0D0D0D;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  z-index: 1999;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  border-left: 3px solid #D4AF37;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  padding: 8px 14px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D4AF37;
  color: #0D0D0D;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #B8B8B8;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid #333333;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #D4AF37;
  padding-left: 12px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin: 8px 8px 8px 0;
}

.btn-primary {
  background: #D4AF37;
  color: #0D0D0D;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: #F0C34A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}

.btn-secondary:hover {
  background: #D4AF37;
  color: #0D0D0D;
}

.btn-link {
  background: transparent;
  color: #D4AF37;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 2px solid #D4AF37;
  border-radius: 0;
}

.btn-link:hover {
  color: #F0C34A;
  border-bottom-color: #F0C34A;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #262626 100%);
  padding: 100px 24px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 175, 55, 0.02) 10px,
    rgba(212, 175, 55, 0.02) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #B8B8B8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* INTERNAL HERO */
.hero-internal {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
  padding: 80px 24px 60px;
  margin-bottom: 60px;
  border-bottom: 3px solid #D4AF37;
}

.breadcrumbs {
  font-size: 14px;
  color: #808080;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: #B8B8B8;
}

.breadcrumbs a:hover {
  color: #D4AF37;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 40px;
  text-align: center;
}

/* CONTENT LAYOUTS */
.content-wrapper,
.text-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-solution .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
}

.problem,
.solution {
  flex: 1;
  min-width: 280px;
  background: #262626;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #333333;
}

.problem {
  border-left: 4px solid #CC6666;
}

.solution {
  border-left: 4px solid #D4AF37;
}

/* CARDS & GRIDS */
.services-grid,
.features-grid,
.testimonials-grid,
.values-grid,
.categories-grid,
.contact-grid,
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.feature,
.value-card,
.category-card,
.contact-method,
.trust-item {
  flex: 1;
  min-width: 280px;
  background: #262626;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #333333;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover,
.value-card:hover,
.category-card:hover,
.contact-method:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.service-card h3,
.feature h3,
.value-card h3 {
  color: #D4AF37;
  font-size: 22px;
  margin-bottom: 12px;
}

.price,
.price-highlight {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 16px;
}

/* TESTIMONIALS */
.testimonial-card {
  background: #E8E8E8;
  color: #1A1A1A;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #D4AF37;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  color: #1A1A1A;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}

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

.client-info strong {
  color: #0D0D0D;
  font-size: 16px;
}

.client-info span {
  color: #4A4A4A;
  font-size: 14px;
}

/* STATS */
.stats {
  background: #0D0D0D;
  padding: 60px 20px;
  border-top: 2px solid #D4AF37;
  border-bottom: 2px solid #D4AF37;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  text-align: center;
}

.stat {
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Merriweather', serif;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 16px;
  color: #B8B8B8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section > * {
  flex: 1;
  min-width: 280px;
}

/* LISTS */
.benefits-list,
.principles-list,
.industries-list,
.addon-list {
  list-style: none;
  margin-left: 0;
}

.benefits-list li,
.principles-list li,
.industries-list li,
.addon-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.benefits-list li::before,
.principles-list li::before,
.industries-list li::before,
.addon-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid #D4AF37;
  border-radius: 4px;
  padding: 32px;
  margin: 32px 0;
}

.highlight-box h3 {
  color: #D4AF37;
  margin-bottom: 16px;
}

/* SERVICE DETAIL */
.service-detail {
  background: #262626;
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid #D4AF37;
  margin-bottom: 40px;
}

.service-detail h2 {
  border-left: none;
  padding-left: 0;
}

/* ARTICLES */
.article-featured,
.article-card {
  background: #262626;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #333333;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.article-card:hover {
  border-color: #D4AF37;
  transform: translateY(-2px);
}

.article-featured {
  border-left: 4px solid #D4AF37;
}

.article-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #808080;
  margin-top: 16px;
}

.category {
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* TAGS */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: #262626;
  color: #B8B8B8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  border: 1px solid #333333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag:hover {
  background: #D4AF37;
  color: #0D0D0D;
  border-color: #D4AF37;
}

/* NEWSLETTER */
.newsletter-signup {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
  padding: 60px 20px;
  text-align: center;
  border: 2px solid #D4AF37;
  border-radius: 4px;
}

.newsletter-signup .benefits {
  max-width: 600px;
  margin: 32px auto;
}

.newsletter-note {
  font-size: 14px;
  color: #808080;
  margin-top: 24px;
}

/* CONTACT FORM */
.form-info {
  background: #262626;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #333333;
  margin-top: 24px;
}

.form-note,
.privacy-note {
  font-size: 14px;
  color: #B8B8B8;
  margin-top: 16px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #262626;
  padding: 24px;
  border-radius: 4px;
  border-left: 3px solid #D4AF37;
}

.faq-item h3 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 12px;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  font-size: 14px;
  color: #808080;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

.legal-links h3 {
  margin-bottom: 16px;
}

.legal-links nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* CONFIRMATION PAGE */
.confirmation-icon {
  font-size: 80px;
  color: #D4AF37;
  text-align: center;
  margin-bottom: 24px;
}

.confirmation-message {
  text-align: center;
  padding: 60px 20px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 40px auto;
}

.step {
  background: #262626;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #D4AF37;
  font-size: 18px;
  color: #B8B8B8;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: #262626;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #333333;
  text-align: center;
}

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 2px solid #D4AF37;
  border-bottom: 2px solid #D4AF37;
}

.trust-note,
.cta-note {
  font-size: 14px;
  color: #B8B8B8;
  margin-top: 16px;
}

.bottom-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
}

/* FOOTER */
footer {
  background: #0D0D0D;
  color: #B8B8B8;
  padding: 60px 20px 20px;
  border-top: 3px solid #D4AF37;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: grayscale(30%);
}

.footer-section h4 {
  color: #D4AF37;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section nav a {
  color: #B8B8B8;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section nav a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

.footer-section p {
  font-size: 14px;
  color: #B8B8B8;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333333;
  font-size: 14px;
  color: #808080;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0D0D0D;
  border-top: 3px solid #D4AF37;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  color: #B8B8B8;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: #D4AF37;
  color: #0D0D0D;
}

.cookie-accept:hover {
  background: #F0C34A;
}

.cookie-reject {
  background: #4A4A4A;
  color: #E8E8E8;
}

.cookie-reject:hover {
  background: #5A5A5A;
}

.cookie-settings {
  background: transparent;
  color: #D4AF37;
  border: 1px solid #D4AF37;
}

.cookie-settings:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #1A1A1A;
  border: 2px solid #D4AF37;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  color: #D4AF37;
  border: none;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 12px;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #F0C34A;
}

.cookie-category {
  background: #262626;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 16px;
  border-left: 3px solid #D4AF37;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #4A4A4A;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #D4AF37;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #E8E8E8;
  border-radius: 50%;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #B8B8B8;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  
  .hero h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  /* MOBILE NAVIGATION */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  
  /* LAYOUT */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* SECTIONS */
  section {
    padding: 32px 16px;
  }
  
  /* GRIDS */
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .values-grid,
  .stats-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .value-card,
  .stat {
    min-width: 100%;
  }
  
  /* TEXT-IMAGE SECTIONS */
  .text-image-section {
    flex-direction: column;
  }
  
  .problem-solution .content-wrapper {
    flex-direction: column;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* COOKIE CONSENT */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  
  .container {
    padding: 0 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.article-card,
.value-card {
  animation: fadeIn 0.5s ease forwards;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }