/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #0a0f14;
  --foreground: #fafafa;
  --card: #0f1419;
  --card-foreground: #fafafa;
  --primary: #fafafa;
  --primary-foreground: #0a0f14;
  --secondary: #1a2028;
  --secondary-foreground: #fafafa;
  --muted: #1a2028;
  --muted-foreground: #8b949e;
  --accent: #60a5fa;
  --accent-glow: rgba(96, 165, 250, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --radius: 1rem;
}

html {
  scroll-behavior: smooth;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Glass Morphism */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(96, 165, 250, 0.1);
}

/* Gradient Mesh Background */
.gradient-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(at 40% 20%, rgba(59, 130, 246, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(99, 102, 241, 0.06) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(59, 130, 246, 0.05) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(99, 102, 241, 0.04) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(59, 130, 246, 0.06) 0px, transparent 50%);
  pointer-events: none;
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}

.orb-1 {
  top: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.15);
}

.orb-2 {
  bottom: 10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.1);
  animation-delay: -4s;
}

.orb-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: rgba(96, 165, 250, 0.08);
}

.orb-left {
  top: 30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.1);
}

.orb-cta {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: rgba(96, 165, 250, 0.12);
}

@keyframes orb-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translate(20px, -30px) scale(1.05);
    opacity: 0.7;
  }
  66% {
    transform: translate(-10px, 20px) scale(0.95);
    opacity: 0.5;
  }
}

/* Section Lines */
.section-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-line.top {
  top: 0;
}

.section-line.bottom {
  bottom: 0;
}

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Premium Tag */
.premium-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(96, 165, 250, 0.1);
  color: var(--accent);
  border: 1px solid rgba(96, 165, 250, 0.2);
  margin-bottom: 1.5rem;
}

/* Text Glow */
.text-glow {
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(96, 165, 250, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}

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

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 20px rgba(250, 250, 250, 0.15);
}

.btn-primary:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(250, 250, 250, 0.2);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: var(--foreground);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(10, 15, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-img {
  height: 2rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-desktop a {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.mobile-menu-btn:hover {
  opacity: 0.7;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.close-icon {
  display: none;
}

.menu-open .menu-icon {
  display: none;
}

.menu-open .close-icon {
  display: block;
}

.nav-mobile {
  position: fixed;
  inset: 5rem 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: rgba(10, 15, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile.active {
  opacity: 1;
  pointer-events: auto;
}

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

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

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  
  .nav-cta {
    display: inline-flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.hero-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.card-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.hero-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.75rem;
  letter-spacing: -0.01em;
}

.hero-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .hero-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

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

/* Section Header */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-header p {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.7;
}

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

@media (min-width: 1024px) {
  .section-header h2 {
    font-size: 3.5rem;
  }
}

/* Impact Section */
.impact {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.impact-header {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 5rem;
}

.impact-header h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.impact-header p {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

.impact-cards {
  display: grid;
  gap: 1.25rem;
}

.impact-card {
  padding: 2rem;
  border-radius: 1.5rem;
}

.impact-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
  background: rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
}

.impact-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--accent);
}

.impact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.impact-card p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .impact-header h2 {
    font-size: 3rem;
  }
  
  .impact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .impact-header h2 {
    font-size: 3.75rem;
  }
}

/* Services */
.services {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.services-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  padding: 2rem;
  border-radius: 1.5rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.4);
}

.service-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.6;
}

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

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

/* Process */
.process {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.process-timeline {
  max-width: 48rem;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(99, 102, 241, 0.1));
  border: 1px solid rgba(96, 165, 250, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.step-content {
  flex: 1;
  padding: 1.5rem;
  border-radius: 1rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .step-number {
    width: 4rem;
    height: 4rem;
    font-size: 1rem;
  }
  
  .process-step {
    gap: 2rem;
  }
}

/* Products */
.products {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.products-grid {
  display: grid;
  gap: 1.25rem;
}

.product-card {
  padding: 2rem;
  border-radius: 1.5rem;
}

.product-card.featured {
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.05);
}

.product-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.product-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.product-card p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-link:hover {
  gap: 0.625rem;
}

.product-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

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

/* Cases */
.cases {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cases-grid {
  display: grid;
  gap: 1.25rem;
}

.case-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  border-radius: 1.5rem;
}

.case-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(96, 165, 250, 0.2);
  line-height: 1;
  transition: color 0.3s ease;
}

.case-card:hover .case-number {
  color: rgba(96, 165, 250, 0.4);
}

.case-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0.375rem 0 0.75rem;
  letter-spacing: -0.01em;
}

.case-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted-foreground);
}

.case-content p strong {
  font-weight: 500;
  color: var(--foreground);
}

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

/* About */
.about {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.about-text {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
}

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

.value-card {
  padding: 1.75rem;
  border-radius: 1.25rem;
  text-align: center;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.value-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
}

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

/* CTA */
.cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

/* FAQ */
.faq {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--muted-foreground);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Footer */
.footer {
  position: relative;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

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

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

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

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

.footer-social a:hover {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
  color: var(--accent);
}

.footer-social svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
