@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-dark: #111827;
  --primary-red: #D92D20;
  --secondary-red: #FEF3F2;
  --text-gray: #6B7280;
  --bg-color: #FFFFFF;
  --border-color: #F3F4F6;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --grid-color: rgba(0, 0, 0, 0.03);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  color: var(--primary-dark);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background Grids and Gradients */
.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.grid-bg {
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
}

.gradient-top-right {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254,243,242,1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.gradient-bottom-left {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254,243,242,1) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(40px);
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.logo-text h1 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.125rem;
}

.logo-text p {
  font-size: 0.75rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.header-action .pill-btn {
  background-color: var(--secondary-red);
  color: var(--primary-red);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border: 1px solid rgba(217, 45, 32, 0.1);
}

.header-action .pill-btn:hover {
  background-color: #FEE4E2;
}

.header-action .dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 45, 32, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(217, 45, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 45, 32, 0); }
}

/* Main Content */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.status-badge {
  background-color: var(--secondary-red);
  color: var(--primary-red);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  color: var(--primary-red);
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-weight: 400;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-lg);
  margin-bottom: 4rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 20px -5px rgb(0 0 0 / 0.15);
  background-color: #000000;
}

/* Stats Section */
.section-label {
  font-size: 0.75rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.section-label::before,
.section-label::after {
  content: '';
  height: 1px;
  width: 24px;
  background-color: var(--border-color);
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.stat-card {
  background: white;
  border: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  min-width: 180px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.stat-card h3 {
  color: var(--primary-red);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stat-card p {
  color: var(--text-gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Services Section */
.services-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.service-pill {
  background: white;
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-sm);
  color: var(--primary-dark);
  transition: transform 0.2s ease, border-color 0.2s ease;
  cursor: default;
}

.service-pill:hover {
  transform: translateY(-2px);
  border-color: var(--primary-red);
}

.service-icon {
  width: 24px;
  height: 24px;
  background-color: var(--secondary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 0.75rem;
}

/* Footer */
footer {
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: auto;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-left strong {
  color: var(--primary-dark);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.developer-badge {
  background-color: var(--secondary-red);
  color: var(--primary-red);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.developer-badge .dev-icon {
  background-color: var(--primary-dark);
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

/* Page Layout for Policies */
.policy-page-wrapper {
  max-width: 1000px;
  margin: 2rem auto 4rem;
  padding: 0 2rem;
  width: 100%;
}

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

.policy-header h1 {
  font-size: 3rem;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.policy-header p {
  color: var(--text-gray);
  font-size: 1.125rem;
}

.policy-container {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  padding: 4rem;
  text-align: left;
}

.policy-container h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  font-weight: 700;
}

.policy-container h2:first-of-type {
  margin-top: 0;
}

.policy-container p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.policy-container ul {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  font-size: 1.05rem;
}

.policy-container li {
  margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
  header { padding: 2rem; }
  footer { padding: 2rem; flex-direction: column; gap: 1.5rem; text-align: center; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  header { flex-direction: column; gap: 1rem; text-align: center; }
  .stats-grid { gap: 1rem; }
  .stat-card { min-width: 45%; padding: 1.25rem; }
  .policy-container { margin: 2rem 1rem; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .stat-card { min-width: 100%; }
}
