/* ==========================================
   صاحب التاج المتميزة التجارية - CSS
   ========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #a33924;
  --primary-dark: #8b2e1f;
  --primary-light: #c94a31;
  --secondary-color: #000000;
  --text-color: #333333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  direction: rtl;
  text-align: right;
}



/* ==========================================
   Navigation
   ========================================== */

nav {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.nav-hidden {
  transform: translateY(-100%);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.25rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.dropdown .dropdown-toggle::after {
  content: "▾";
  margin-right: 0.35rem;
  font-size: 0.8rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 220px;
  display: none;
  z-index: 1001;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-color);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.nav-menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -8%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
  transform: rotate(-20deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 60%);
  transform: rotate(15deg);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: right;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #fff, #ffe2d8 35%, #ffd3c7 65%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero h1, .hero h2, .hero h3, .hero h4, .hero h5, .hero h6 {
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid;
}

.btn-primary:hover {
  background-color: var(--light-bg);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  backdrop-filter: blur(10px);
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 60%);
  transform: rotate(-25deg);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 65vh, 720px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide .hero-container {
  height: 100%;
}

.hero-controls {
  position: absolute;
  top: 50%;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.hero-controls .hero-prev,
.hero-controls .hero-next {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.hero-dots button.active {
  background-color: var(--white);
}

.scroll-indicator {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  text-decoration: none;
}

/* Hero Stats Bar */
.stats-bar {
  max-width: 1280px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.stat {
  text-align: center;
  color: var(--white);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  opacity: 0.85;
  margin-top: 0.5rem;
}

/* ==========================================
   Section Styles
   ========================================== */

section {
  padding: 4rem 2rem;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ==========================================
   About Section
   ========================================== */

#about {
  background-color: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.about-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
}

.feature-card svg {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #666;
}

/* ==========================================
   Products Section
   ========================================== */

#products {
  background-color: var(--white);
}

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

.product-filter {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-button {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background-color: var(--white);
  color: var(--text-color);
  cursor: pointer;
}

.filter-button.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.icon-button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal.show { display: flex; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  width: calc(100% - 2rem);
  padding: 1.5rem;
}

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

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.modal-body img { width: 100%; border-radius: 0.5rem; object-fit: cover; }

.modal-actions { display: flex; gap: 0.75rem; margin-top: 1rem; }

.modal-close { background: none; border: none; font-size: 1.25rem; cursor: pointer; color: var(--text-color); }

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-card:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
}

.product-icon {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: rgba(163, 57, 36, 0.06);
  border-radius: 0.5rem;
  overflow: hidden;
  display: block;
  margin-bottom: 1rem;
}

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

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  display: block;
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.price-tag {
  color: var(--primary-color);
  font-weight: 600;
}

.toast {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: #333;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2000;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.product-features svg {
  width: 16px;
  height: 16px;
  color: var(--primary-color);
  flex-shrink: 0;
}

/* === Product Cards Enhanced Layout === */
.products-grid .product-card {
  display: flex;
  flex-direction: column;
}

.products-grid .product-icon {
  position: relative;
}

.products-grid .product-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-grid .product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.products-grid .product-features li {
  font-size: 0.85rem;
  background: rgba(163, 57, 36, 0.08);
  color: var(--text-color);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.products-grid .product-actions {
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.product-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 0.4rem;
  font-size: 0.75rem;
}

/* ==========================================
   Features Section
   ========================================== */

#services {
  background-color: var(--light-bg);
}

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

.feature-box {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-box h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-box p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================
   Contact Section
   ========================================== */

#contact {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.75rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  margin-top: 2rem;
  text-align: right;
}

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

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.35rem; color: #fff; font-size: 0.9rem; }
.form-control {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.form-control::placeholder { color: rgba(255, 255, 255, 0.8); }
.form-control:focus { outline: none; border-color: #fff; background: rgba(255, 255, 255, 0.3); }

.form-actions { display: flex; justify-content: center; margin-top: 0.5rem; }

#contact::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(201, 74, 49, 0.18) 0%, rgba(201, 74, 49, 0) 60%);
  transform: rotate(-25deg);
}

#contact::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(163, 57, 36, 0.16) 0%, rgba(163, 57, 36, 0) 60%);
  transform: rotate(15deg);
}

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

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

.contact-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
}

.contact-box h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-box a,
.contact-box p {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-box a:hover {
  opacity: 0.8;
}

/* ==========================================
   Footer
   ========================================== */

footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3rem 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

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

.footer-section h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links i {
  font-size: 1.25rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1200;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--white);
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

  .about-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-image {
    min-height: 250px;
  }

  .hero-image svg {
    width: 150px;
    height: 150px;
  }
}

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

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .navbar {
    padding: 0.75rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    height: 40px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

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

  .product-card {
    padding: 1.5rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .contact-box {
    padding: 1rem;
  }
}
.products-grid .product-cta {
  margin-top: auto;
  display: flex;
  gap: 0.75rem;
}

.products-grid .product-cta .btn {
  flex: 1;
}
/* ==========================================
   Site Stats Section
   ========================================== */
#stats { background-color: var(--light-bg); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  background-color: rgba(163, 57, 36, 0.08);
}
.stat-value { font-size: 2rem; font-weight: 700; color: var(--primary-color); line-height: 1; }
.stat-label { color: #666; margin-top: 0.25rem; }

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

.stats-cta { display: flex; justify-content: center; margin-top: 1rem; }
