

/* ═══════════════════════════════════════════════════════════
   Persian Fonts
   ═══════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'NewFont';
  src: url('typography/new/new.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NewFont';
  src: url('typography/new/new.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NewFont';
  src: url('typography/new/new.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NewFont';
  src: url('typography/new/new.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Main Colors */
  --primary-red: #A3171C;
  --primary-dark: #7D1216;
  --secondary-green: #61CE70;
  --light-red: #FFF5F5;
  --dark-red: #8B0000;
  
  /* Supporting Colors */
  --green-light: #E8F8EB;
  --yellow: #FFD43B;
  --yellow-light: #FFF9E6;
  --gold: #F59E0B;
  
  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Text Colors */
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
}

body {
  font-family: 'NewFont', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.8;
  color: var(--text-primary);
  background: #FAFAFA;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ═══════════════════════════════════════════════════════════
   Header & Navigation
   ═══════════════════════════════════════════════════════════ */

header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--primary-red);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   Hero Section
   ═══════════════════════════════════════════════════════════ */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 50%, #F0FDF4 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(163, 23, 28, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(97, 206, 112, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 550px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary-green);
  border-radius: 50%;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-highlight {
  color: var(--secondary-green);
  position: relative;
  display: inline-block;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  max-width: 600px;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-green), var(--gold));
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.03);
}

.stat-icon-wrapper {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--light-red), var(--green-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.stat-item:hover .stat-icon-wrapper {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: var(--shadow-md);
  animation: none;
}

.stat-icon {
  font-size: 1.25rem;
  display: block;
}

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1.1;
  margin-bottom: 2px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.stat-separator {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--gray-200), transparent);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-green) 100%);
}

.card-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gray-400);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-badge {
  background: var(--primary-red);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-lg);
  text-align: center;
  min-width: 80px;
}

.info-number {
  font-size: 1.5rem;
  font-weight: 900;
  display: block;
  margin-bottom: 4px;
}

.info-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

.info-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 4px;
}

.info-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   Sections
   ═══════════════════════════════════════════════════════════ */

section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--light-red);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   Story Cards
   ═══════════════════════════════════════════════════════════ */

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red), var(--secondary-green));
}

.story-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-red), var(--secondary-green));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  color: white;
}

.story-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 16px;
  line-height: 1.4;
}

.story-card p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}

.story-card:hover {
  box-shadow: var(--shadow-xl);
}

/* ═══════════════════════════════════════════════════════════
   Features Grid
   ═══════════════════════════════════════════════════════════ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-green);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--secondary-green);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   Values Section
   ═══════════════════════════════════════════════════════════ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-item:hover {
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--secondary-green);
}

.value-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 8px;
}

.value-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   Timeline
   ═══════════════════════════════════════════════════════════ */

.timeline {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.timeline-year {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--secondary-green);
  border: 4px solid var(--white);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px var(--green-light);
}

/* ═══════════════════════════════════════════════════════════
   Stats Section
   ═══════════════════════════════════════════════════════════ */

.stats-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, #8B0000 50%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-2xl);
  padding: 70px 50px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-decorative-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.stats-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  animation: float 8s ease-in-out infinite;
}

.stats-circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(97, 206, 112, 0.2) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.stats-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.stats-header h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stats-header p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stats-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.stats-item:hover::before {
  transform: translateX(100%);
}

.stats-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stats-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stats-item:hover .stats-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.stats-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stats-number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-plus,
.stats-percent {
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.9;
}

.stats-label {
  font-size: 1.05rem;
  font-weight: 500;
  opacity: 0.95;
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
}

.stats-bar {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.stats-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--secondary-green), var(--yellow));
  border-radius: 2px;
  animation: fillBar 2s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fillBar {
  to {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   Team Section
   ═══════════════════════════════════════════════════════════ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-card:hover {
  box-shadow: var(--shadow-xl);
}

.team-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gray-400);
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 4px;
}

.team-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   CTA Section
   ═══════════════════════════════════════════════════════════ */

.cta-section {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
  border-radius: var(--radius-2xl);
  padding: 80px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: 32px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.btn-white:hover {
  background: var(--gray-100);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-red);
}

/* ═══════════════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════════════ */

footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 24px;
  margin-top: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-red);
  color: var(--white);
}

.footer-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════
   Responsive Design
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-stats {
    max-width: 520px;
  }
  
  .stat-item {
    gap: 8px;
    padding: 0 10px;
  }
  
  .stat-icon-wrapper {
    width: 38px;
    height: 38px;
  }
  
  .stat-icon {
    font-size: 1.15rem;
  }
  
  .stat-number {
    font-size: 1.35rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    max-width: 100%;
  }
  
  .stat-item {
    padding: 8px 12px;
    width: 100%;
  }
  
  .stat-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
  }
  
  .stat-icon-wrapper {
    width: 36px;
    height: 36px;
  }
  
  .stat-icon {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 1.35rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-header h2 {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stats-item {
    padding: 28px 16px;
  }
  
  .stats-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .stats-number {
    font-size: 2.5rem;
  }
  
  .stats-plus,
  .stats-percent {
    font-size: 1.5rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-left: 60px;
  }
  
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
