/* CSS Variables - Contemporary Islamic Minimalism */
:root {
  --primary: oklch(0.45 0.08 210); /* Deep teal */
  --primary-foreground: oklch(0.98 0.01 210);
  --background: oklch(0.99 0.005 60); /* Warm off-white */
  --foreground: oklch(0.25 0.01 210); /* Deep teal-gray for text */
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.25 0.01 210);
  --secondary: oklch(0.88 0.02 45); /* Sand beige */
  --secondary-foreground: oklch(0.25 0.01 210);
  --muted: oklch(0.94 0.01 45);
  --muted-foreground: oklch(0.50 0.02 210);
  --accent: oklch(0.70 0.08 70); /* Soft gold */
  --accent-foreground: oklch(0.15 0.01 210);
  --border: oklch(0.90 0.01 210);
  --input: oklch(0.90 0.01 210);
  --ring: oklch(0.45 0.08 210);
  --radius: 0.5rem;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--border);
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--foreground);
}

.nav-logo {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.nav-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  font-family: var(--font-display);
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--foreground);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  height: 2.25rem;
}

.btn-primary:hover {
  background-color: oklch(from var(--primary) l c h / 0.9);
}

.btn-lg {
  height: 2.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 1rem;
}

.btn-outline {
  border: 1px solid var(--border);
  background-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
  background-color: var(--accent);
}

.btn-white {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.btn-foreground {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-foreground:hover {
  background-color: oklch(from var(--foreground) l c h / 0.9);
}

.btn-sm {
  height: 2rem;
  padding: 0.375rem 0.75rem;
  gap: 0.375rem;
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
}

.btn-sm svg {
  width: 1rem;
  height: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, oklch(from var(--primary) l c h / 0.6), oklch(from var(--primary) l c h / 0.4), transparent);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url('images/geometric-pattern.webp');
  background-size: 400px;
  background-repeat: repeat;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 4.5rem;
  }
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-text p {
    font-size: 1.5rem;
  }
}

.hero-text .subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats div {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.hero-stats span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-mockup {
  position: relative;
}

.hero-mockup img {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 25px 50px -12px rgba(0, 0, 0, 0.25));
  transition: transform 0.5s;
}

.hero-mockup:hover img {
  transform: scale(1.05);
}

.floating-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.floating-blur-1 {
  top: -2rem;
  right: -2rem;
  width: 6rem;
  height: 6rem;
  background-color: oklch(from var(--accent) l c h / 0.2);
}

.floating-blur-2 {
  bottom: -2rem;
  left: -2rem;
  width: 8rem;
  height: 8rem;
  background-color: oklch(from var(--primary) l c h / 0.2);
  animation-delay: 0.7s;
}

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

.hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background-color: var(--background);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: var(--background);
  position: relative;
}

.features-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url('images/geometric-pattern.webp');
  background-size: 300px;
  background-repeat: repeat;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .features-header h2 {
    font-size: 3rem;
  }
}

.features-header p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 5rem;
}

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

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

.card {
  background-color: var(--card);
  color: var(--card-foreground);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.5s;
}

.card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: oklch(from var(--primary) l c h / 0.5);
}

.card-image {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: oklch(from var(--secondary) l c h / 0.3);
}

.card-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-icon {
  margin-bottom: 1rem;
  display: inline-block;
  transition: transform 0.3s;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card-icon svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.featured-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.featured-image img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

.featured-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(from var(--primary) l c h / 0.8), transparent);
  display: flex;
  align-items: flex-end;
}

.featured-image-content {
  padding: 3rem;
}

.featured-image-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.featured-image-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
}

/* About Section */
.about {
  position: relative;
  padding: 6rem 0;
  background-color: var(--secondary);
  overflow: hidden;
}

.about-diagonal-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background-color: var(--background);
  clip-path: polygon(0 0, 100% 50%, 100% 0);
}

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  padding-top: 3rem;
}

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

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-content h2 {
    font-size: 3rem;
  }
}

.about-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: oklch(from var(--primary) l c h / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.about-feature-text h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.about-feature-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.stat-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: oklch(from var(--primary) l c h / 0.1);
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-icon svg {
  width: 2rem;
  height: 2rem;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

.about-diagonal-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background-color: var(--background);
  clip-path: polygon(0 100%, 100% 100%, 100% 50%, 0 100%);
}

/* Download CTA Section */
.download {
  padding: 6rem 0;
  background-color: var(--background);
}

.download-cta {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.download-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, var(--primary), oklch(from var(--primary) l c h / 0.9), var(--accent));
}

.download-cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url('images/geometric-pattern.webp');
  background-size: 200px;
  background-repeat: repeat;
}

.download-cta-content {
  position: relative;
  z-index: 10;
  padding: 4rem 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .download-cta-content {
    padding: 5rem 4rem;
  }
}

.download-cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .download-cta-content h2 {
    font-size: 3.75rem;
  }
}

.download-cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .download-buttons {
    flex-direction: row;
  }
}

.download-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

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

.download-feature svg {
  width: 1.25rem;
  height: 1.25rem;
}

.download-feature span {
  font-size: 0.875rem;
}

/* Footer */
footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--background);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--foreground);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-links span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-button {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--background);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Animation Classes */
.animate-fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in-left {
  opacity: 0;
  transform: translateX(-1.25rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-in-right {
  opacity: 0;
  transform: translateX(1.25rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.animate-delay-200 {
  transition-delay: 200ms;
}

.hover-scale {
  transition: transform 0.3s;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-bounce svg {
  transition: transform 0.3s;
}

.hover-bounce:hover svg {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.25rem);
  }
}

/* Utility Classes for Inline Styles */
.container-relative {
  position: relative;
  z-index: 10;
}

.container-relative-padded {
  position: relative;
  z-index: 10;
  padding-top: 3rem;
}

.icon-placeholder {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 4px;
}

.icon-placeholder-circle {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
}

.icon-placeholder-small {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 4px;
  display: inline-block;
}

.icon-placeholder-small-circle {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  display: inline-block;
}

.icon-placeholder-footer {
  width: 24px;
  height: 24px;
  background: var(--foreground);
  border-radius: 4px;
}

.icon-placeholder-footer-small {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 4px;
  display: inline-block;
}

.btn-link {
  text-decoration: none;
}

/* Content Wrapper - Used by multiple pages */
.content-wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
  min-height: calc(100vh - 4rem);
}

.download-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.download-header {
  margin-bottom: 3rem;
}

.download-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .download-header h1 {
    font-size: 3.5rem;
  }
}

.download-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin: 0 auto;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: center;
}

@media (min-width: 640px) {
  .download-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background-color: var(--foreground);
  color: var(--background);
  border-radius: 0.75rem;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
}

@media (min-width: 640px) {
  .download-btn {
    width: auto;
    min-width: 240px;
  }
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: oklch(from var(--foreground) l c h / 0.9);
}

.download-btn-icon {
  width: 2rem;
  height: 2rem;
  background-color: var(--background);
  border-radius: 0.5rem;
}

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

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

.download-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.download-feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary);
  border-radius: 50%;
}

/* Additional Utility Classes */
.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

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

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--foreground);
}

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.list-item {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted-foreground);
}

.list-item-bullet {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
}

/* About Page Styles */
.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 3.5rem;
  }
}

.page-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

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

.content-body p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .content-section h2 {
    font-size: 2.5rem;
  }
}

.content-section p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

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

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.stat-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.stat-item .stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

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

.section-divider {
  height: 1px;
  background-color: var(--border);
  margin: 4rem 0;
}

.values-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

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

.value-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: oklch(from var(--primary) l c h / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-icon div {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary);
  border-radius: 4px;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.back-link:hover {
  color: oklch(from var(--primary) l c h / 0.8);
}

.back-link div {
  width: 1rem;
  height: 1rem;
  background-color: var(--primary);
  border-radius: 2px;
}

/* Legal Pages Styles (Privacy Policy, Terms of Service, User Agreement) */
.content-header {
  text-align: center;
  margin-bottom: 3rem;
}

.content-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .content-header h1 {
    font-size: 3.5rem;
  }
}

.content-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.last-updated {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.last-updated p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Contact Page Styles */
.contact-info {
  text-align: center;
  margin: 3rem 0;
}

.contact-info p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-email {
  font-size: 1.5rem;
  margin: 2rem 0;
}

.contact-email a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-email a:hover {
  color: oklch(from var(--primary) l c h / 0.8);
  text-decoration: underline;
}

/* Features Page Styles */
.features-section {
  margin-bottom: 4rem;
}

.feature-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: oklch(from var(--primary) l c h / 0.5);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: oklch(from var(--primary) l c h / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon div {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary);
  border-radius: 4px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
}
