/* =========================================================
   CAMPUSKART — LANDING PAGE
   Modern, bulky, app-styled layout
========================================================= */

:root {
  --bg: #10140F;
  --bg-elevated: #161C12;
  --surface: #1B221A;
  --surface-hover: #232B20;
  --border: rgba(246, 245, 240, 0.08);
  --border-strong: rgba(246, 245, 240, 0.14);
  --brand-green: #3E8E32;
  --brand-green-dark: #2C6624;
  --brand-green-soft: rgba(62, 142, 50, 0.16);
  --accent-gold: #E8B84B;
  --accent-gold-dark: #C99A34;
  --text-primary: #F6F5F0;
  --text-secondary: #A6B0A2;
  --text-muted: #6D766A;
  --text-dark: #1B221A;
  --danger: #E15B4D;
  --warning: #F59E0B;
  --success: #34D399;
  --info: #60A5FA;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* =========================================================
   RESET / BASE
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.highlight {
  color: var(--accent-gold);
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 20px;
  background: transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
}

.nav-brand-text::after {
  content: '.';
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-btn {
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
}

.nav-btn-primary {
  background: var(--accent-gold);
  color: var(--bg) !important;
}

.nav-btn-primary:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 184, 75, 0.3);
}

.nav-toggle {
  display: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================
   SIDE MENU
========================================================= */

.side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100%;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  padding: 24px;
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.side-menu.open {
  right: 0;
}

.side-menu-close {
  text-align: right;
  font-size: 24px;
  color: var(--text-secondary);
  cursor: pointer;
  margin-bottom: 20px;
}

.side-menu-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.side-menu-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.side-menu-brand span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.side-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  font-weight: 500;
}

.side-menu a:hover {
  background: var(--surface);
  color: #fff;
}

.side-menu a i {
  width: 20px;
}

.side-menu-btn {
  background: var(--accent-gold);
  color: var(--bg) !important;
  margin-top: 20px;
  justify-content: center;
  font-weight: 700;
}

.side-menu-btn:hover {
  background: var(--accent-gold-dark) !important;
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/A.jpg') no-repeat center center/cover;
  padding: 80px 20px 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 20, 15, 0.85), rgba(16, 20, 15, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(232, 184, 75, 0.15);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}

.hero-title .highlight {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-gold);
  display: block;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 184, 75, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-gold);
}

.btn-large {
  padding: 16px 40px;
  font-size: 17px;
}

.btn-rider {
  background: #fff;
  color: var(--bg);
}

.btn-rider:hover {
  background: var(--accent-gold);
  color: var(--bg);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  animation: bounceDown 2s infinite;
}

.hero-scroll-indicator i {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   SECTION HEADERS
========================================================= */

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(232, 184, 75, 0.10);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================================
   FEATURES SECTION
========================================================= */

.features {
  padding: 80px 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(232, 184, 75, 0.10);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   CATEGORIES SECTION
========================================================= */

.categories {
  padding: 60px 0 80px;
  background: var(--bg-elevated);
}

.categories-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  flex: 0 0 160px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-item:hover {
  transform: translateY(-4px);
}

.category-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 10px;
}

.category-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* =========================================================
   HOW IT WORKS
========================================================= */

.how-it-works {
  padding: 80px 0;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 999px;
}

.step-icon {
  font-size: 36px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
   RIDER SECTION
========================================================= */

.rider-section {
  padding: 80px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.rider-content h2 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.rider-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 30px;
}

.rider-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 14px;
}

.rider-benefits li i {
  color: var(--accent-gold);
}

.rider-image {
  position: relative;
}

.rider-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rider-image-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.rider-floating-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.rider-floating-card i {
  font-size: 24px;
  color: var(--accent-gold);
}

.rider-floating-card span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}

.rider-floating-card small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.rider-earnings {
  top: 20px;
  right: -10px;
}

.rider-deliveries {
  bottom: 20px;
  left: -10px;
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
  padding: 80px 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-size: 14px;
}

.testimonial-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232, 184, 75, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-author strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
}

.testimonial-author span {
  color: var(--text-muted);
  font-size: 12px;
}

/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--accent-gold);
  color: var(--bg);
}

.cta-buttons .btn-primary:hover {
  background: var(--accent-gold-dark);
}

.cta-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta-buttons .btn-outline:hover {
  border-color: var(--accent-gold);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 60px 0 30px;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin: 10px 0 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 300px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--bg);
  border-color: var(--accent-gold);
}

.footer-links h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-links p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links p i {
  width: 20px;
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rider-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rider-image-wrapper img {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-number {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .rider-benefits {
    grid-template-columns: 1fr;
  }

  .rider-content h2 {
    font-size: 30px;
  }

  .rider-earnings {
    top: 10px;
    right: 0;
  }

  .rider-deliveries {
    bottom: 10px;
    left: 0;
  }

  .rider-floating-card {
    padding: 10px 14px;
  }

  .rider-floating-card span {
    font-size: 14px;
  }

  .rider-image-wrapper img {
    height: 280px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1 1 33%;
  }

  .hero-stat-number {
    font-size: 20px;
  }

  .rider-image-wrapper img {
    height: 220px;
  }

  .rider-earnings {
    top: 5px;
    right: 0;
  }

  .rider-deliveries {
    bottom: 5px;
    left: 0;
  }

  .rider-floating-card {
    padding: 8px 12px;
  }

  .rider-floating-card span {
    font-size: 12px;
  }

  .rider-floating-card small {
    font-size: 9px;
  }

  .rider-floating-card i {
    font-size: 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .step-card {
    padding: 24px 16px;
  }
}
/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
  padding: 80px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-mission {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.mission-item:hover {
  border-color: var(--accent-gold);
  transform: translateX(4px);
}

.mission-item i {
  font-size: 20px;
  color: var(--accent-gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.mission-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
}

.mission-item span {
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.5;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 70%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.about-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}

.about-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
}

.about-stat small {
  color: var(--text-muted);
  font-size: 11px;
}

/* Contact link in nav */
.nav-link-contact {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-link-contact:hover {
  color: #fff !important;
}

/* Responsive About */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    max-height: 330px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .about-content h3 {
    font-size: 22px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-stat span {
    font-size: 18px;
  }

  .mission-item {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-content h3 {
    font-size: 20px;
  }

  .mission-item i {
    font-size: 17px;
  }
}