/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Light theme colors */
  --background: #fcfcfc;
  --foreground: #1a1f2e;
  --card: #ffffff;
  --card-foreground: #1a1f2e;
  --primary: #e54d2e;
  --primary-foreground: #ffffff;
  --secondary: #f4f4f5;
  --secondary-foreground: #2d3748;
  --muted: #f0f0f2;
  --muted-foreground: #64748b;
  --border: #e2e4e9;
  --radius: 0.5rem;
  
  /* Shadows */
  --shadow-card: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 60px -15px rgba(229, 77, 46, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.label-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--primary);
}

.heading-xl {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-md {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

.heading-sm {
  font-size: 1.25rem;
  font-weight: 600;
}

.body-lg {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.body-md {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.text-primary {
  color: var(--primary);
}

.text-center {
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #e54d2e 0%, #f97316 100%);
  color: var(--primary-foreground);
  box-shadow: 0 4px 14px rgba(229, 77, 46, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 77, 46, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(252, 252, 252, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

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

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #e54d2e 0%, #f97316 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-img {
  width: 7.5rem;
  height: 7.5rem;
  object-fit: contain;
  border-radius: 0.5rem;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #e54d2e 0%, #f97316 100%);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: block;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 50%, rgba(229, 77, 46, 0.05) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -20%;
  width: 50%;
  height: 50%;
  background: rgba(229, 77, 46, 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(229, 77, 46, 0.3);
  background: rgba(229, 77, 46, 0.05);
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  margin-bottom: 2rem;
}

.hero .body-lg {
  max-width: 540px;
  margin-bottom: 3rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.hero-floating-card {
  position: absolute;
  padding: 1.25rem;
  background: var(--card);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.hero-floating-card.bottom-left {
  bottom: -1.5rem;
  left: -1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-floating-card.top-right {
  top: -1rem;
  right: -1rem;
}

.floating-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, #e54d2e 0%, #f97316 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.floating-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.floating-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: #facc15;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== TRUST BANNER ===== */
.trust-banner {
  padding: 4rem 0;
  background: var(--secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-banner p {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.trust-logo:hover {
  opacity: 1;
}

.trust-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--muted);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.trust-logo-name {
  font-weight: 500;
}

/* ===== SERVICES ===== */
.services {
  background: var(--secondary);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.services-header img {
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(229, 77, 46, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

@media (max-width: 992px) {
  .services-header {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== RESULTS ===== */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.results-header > div {
  max-width: 600px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.result-card {
  position: relative;
  padding: 3rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}

.result-number {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10rem;
  font-weight: 700;
  color: rgba(229, 77, 46, 0.05);
  line-height: 1;
}

.result-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.result-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0.25rem 0 1.5rem;
}

.result-metric {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.result-description {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.result-subtext {
  color: var(--muted-foreground);
}

.result-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--primary);
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.result-card:hover .result-link {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--secondary);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #facc15;
}

.testimonial-quote {
  flex-grow: 1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(229, 77, 46, 0.05) 0%, transparent 100%);
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-list {
  margin: 3rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(229, 77, 46, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--muted-foreground);
}

.contact-info-item a:hover {
  color: var(--primary);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.trust-badge svg {
  color: var(--primary);
}

.contact-form-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.contact-form-wrapper h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

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

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  max-width: 400px;
  margin: 1.5rem 0;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

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

.footer-legal a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-legal a:hover {
  color: var(--foreground);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* ===== CASE STUDIES PAGE ===== */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--background) 0%, var(--secondary) 50%, rgba(229, 77, 46, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
  width: 40%;
  height: 40%;
  background: rgba(229, 77, 46, 0.1);
  border-radius: 50%;
  filter: blur(100px);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

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

.page-hero img {
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* Case Study Articles */
.case-studies-list {
  padding: 6rem 0;
}

.case-study-article {
  margin-bottom: 8rem;
  position: relative;
}

.case-study-number {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(229, 77, 46, 0.1);
  line-height: 1;
  z-index: 0;
}

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

.case-study-grid.reverse {
  direction: rtl;
}

.case-study-grid.reverse > * {
  direction: ltr;
}

.case-study-image {
  position: relative;
}

.case-study-image img {
  border-radius: 1rem;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.case-study-platforms {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
}

.platform-tag {
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.case-study-content {
  position: relative;
  z-index: 1;
}

.case-study-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.case-study-brand {
  font-size: 2.5rem;
  margin: 0.25rem 0;
}

.case-study-tagline {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.case-study-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.case-study-result {
  padding: 1rem;
  background: var(--secondary);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
}

.case-study-result-metric {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.case-study-result-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.case-study-result-sublabel {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.case-study-details h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.case-study-details p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.case-study-duration {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .case-study-grid,
  .case-study-grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .case-study-number {
    font-size: 5rem;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--secondary);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section .body-lg {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: 6rem 0;
}

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

.about-story-content .body-md {
  margin-bottom: 1.5rem;
}

.about-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-story-images > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-story-images > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 3rem;
}

.about-story-images img {
  border-radius: 1rem;
  width: 100%;
  object-fit: cover;
}

.about-story-images img.tall {
  aspect-ratio: 3/4;
}

.stat-box {
  padding: 1.5rem;
  background: linear-gradient(135deg, #e54d2e 0%, #f97316 100%);
  border-radius: 1rem;
  color: white;
}

.stat-box-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-box-label {
  opacity: 0.9;
}

.stat-box-alt {
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: 1rem;
}

.stat-box-alt .stat-box-value {
  color: var(--foreground);
}

.stat-box-alt .stat-box-label {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }
}

/* Values Section */
.values-section {
  background: var(--secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  transition: box-shadow 0.3s ease;
}

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

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(229, 77, 46, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

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

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Timeline */
.timeline-section {
  padding: 6rem 0;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

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

.timeline-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1rem;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
}

.timeline-content {
  width: calc(50% - 2rem);
}

.timeline-year {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-event {
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 0;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
    text-align: left;
    padding-left: 2rem;
  }
  
  .timeline-dot {
    left: 0;
  }
  
  .timeline-content {
    width: 100%;
  }
}

/* Team Section */
.team-section {
  background: var(--secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: left;
}

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.02);
}

.team-member h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

.team-member .role {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.team-member .bio {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Expertise Section */
.expertise-section {
  padding: 6rem 0;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.expertise-card {
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.expertise-card h3 {
  margin: 1.5rem 0 1rem;
}

.expertise-list {
  margin-top: 1.5rem;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  padding: 0.375rem 0;
}

.expertise-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-delay-1 {
  opacity: 0;
  animation: fadeIn 0.6s ease 0.1s forwards;
}

.animate-fade-in-delay-2 {
  opacity: 0;
  animation: fadeIn 0.6s ease 0.2s forwards;
}

.animate-fade-in-delay-3 {
  opacity: 0;
  animation: fadeIn 0.6s ease 0.3s forwards;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 8rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  color: var(--muted-foreground);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}
