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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Animations */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes hoverRise {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 15s ease infinite;
}

.animate-fade-in {
  animation: fadeIn 1.5s ease-out;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

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

.animate-hover-rise {
  animation: hoverRise 1s ease-in-out infinite alternate;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 4rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo {
  height: 2.5rem;
  width: auto;
  margin-right: 0.5rem;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #3b82f6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.navbar-links {
  display: none;
}

.navbar-toggle {
  display: flex;
  align-items: center;
}

.navbar-toggle button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}

.navbar-toggle button:hover {
  color: #3b82f6;
}

.mobile-menu {
  display: none;
  padding: 0.5rem 0;
  border-top: 1px solid #e5e7eb;
}

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  margin: 0.25rem 0;
  border-left: 4px solid transparent;
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.mobile-menu a:hover {
  background-color: #f9fafb;
  border-left-color: #3b82f6;
  color: #3b82f6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.button:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.button-primary {
  background: linear-gradient(to right, #3b82f6, #22d3ee);
  color: white;
}

.button-primary:hover {
  background: linear-gradient(to right, #2563eb, #0ea5e9);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.button-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.button:hover .button-overlay {
  opacity: 1;
}

.button-text {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Button ripple effect */
.button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  animation: ripple-effect 0.6s ease-out;
  transform: scale(0);
  pointer-events: none;
  z-index: 10;
}

@keyframes ripple-effect {
  0% {
    transform: scale(0);
    opacity: 0.4;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .navbar-links a {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.375rem;
    overflow: hidden;
  }
  
  .navbar-links a:hover {
    color: #3b82f6;
    background-color: rgba(219, 234, 254, 0.1);
    transform: translateY(-1px);
  }
  
  .navbar-links a:active {
    transform: translateY(1px);
  }
  
  .navbar-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3b82f6;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .navbar-links a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  
  .navbar-links a::after {
    content: '';
    position: absolute;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(219, 234, 254, 0.3) 0%, transparent 70%);
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
  }
  
  .navbar-links a:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  
  .navbar-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 4rem;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom right, #F8E2D3, #7ACDF4);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
}

.hero-logo-container {
  margin-bottom: 1.5rem;
}

.hero-logo-circle {
  display: inline-block;
  margin-bottom: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  border-radius: 50%;
  overflow: hidden;
}

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

.hero-logo {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
}

.hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  position: relative;
}

.hero-title-gradient {
  background: linear-gradient(to right, #2563eb, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-title-blur {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  bottom: -0.25rem;
  left: -0.25rem;
  z-index: -10;
  filter: blur(1rem);
  opacity: 0.3;
  background: linear-gradient(to right, #2563eb, #22d3ee);
  border-radius: 0.5rem;
}

.hero-tagline {
  color: #2d3748;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.625;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 64rem;
  margin: 2rem auto 0;
}

.document-card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.document-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
  background-color: rgba(255, 255, 255, 0.9);
}

.document-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.value-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
  display: inline-block;
}

.value-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.value-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Legacy document line styles kept for backwards compatibility */
.document-line {
  display: none;
}

.document-line-half {
  width: 50%;
}

.document-line-three-quarters {
  width: 75%;
}

.document-line-two-thirds {
  width: 66.666667%;
}

.scroll-indicator {
  margin-top: 4rem;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator a {
  color: #2563eb;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.scroll-indicator a:hover {
  color: #1d4ed8;
  transform: translateY(3px);
}

.scroll-indicator a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0) 70%);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: -1;
}

.scroll-indicator a:hover::after {
  transform: scale(1.5);
  opacity: 0.8;
}

.scroll-indicator svg {
  height: 2rem;
  width: 2rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-indicator:hover svg {
  transform: translateY(5px);
}

@keyframes scroll-down {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@media (min-width: 640px) {
  .hero-logo {
    width: 10rem;
    height: 10rem;
  }
  
  .hero-title {
    font-size: 3.75rem;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
  }
  
  .document-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  
  .hero-tagline {
    font-size: 1.5rem;
  }
}

/* Features Section */
.features {
  padding: 6rem 1rem;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.feature-card {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  background-color: #dbeafe;
  color: #2563eb;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.feature-icon:hover {
  transform: rotate(5deg) scale(1.1);
  background-color: #bfdbfe;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.6s;
}

.feature-icon:hover::before {
  opacity: 1;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-50%) rotate(45deg);
  }
  100% {
    transform: translateX(150%) rotate(45deg);
  }
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #6b7280;
}

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

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

/* About Section */
.about {
  padding: 6rem 1rem;
  background-color: #f9fafb;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

.about-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #e5e7eb;
}

.about-text h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

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

.about-stat {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  color: #6b7280;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Roadmap Section */
.roadmap {
  padding: 6rem 1rem;
  background-color: white;
}

.timeline {
  max-width: 48rem;
  margin: 4rem auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #e5e7eb;
  left: 1.25rem;
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
  padding-bottom: 3rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-weight: 600;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 4px rgba(219, 234, 254, 0.3);
  cursor: pointer;
}

.timeline-dot:hover {
  transform: scale(1.1);
  background-color: #bfdbfe;
  box-shadow: 0 0 0 6px rgba(219, 234, 254, 0.5), 0 5px 15px rgba(37, 99, 235, 0.2);
  color: #1d4ed8;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.2);
  opacity: 0;
  transform: scale(0);
  transition: transform 0.5s, opacity 0.3s;
  z-index: -1;
}

.timeline-dot:hover::after {
  transform: scale(1.6);
  opacity: 0.4;
  animation: pulse 2s infinite;
}

.timeline-content {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-date {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.timeline-description {
  color: #6b7280;
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item {
    padding-left: 0;
    padding-right: 0;
    width: 50%;
    margin-left: 50%;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 0;
    margin-right: 50%;
    text-align: right;
  }
  
  .timeline-item:nth-child(odd) {
    padding-left: 3rem;
  }
  
  .timeline-item:nth-child(even) {
    padding-right: 3rem;
  }
  
  .timeline-dot {
    left: -1.25rem;
  }
  
  .timeline-item:nth-child(even) .timeline-dot {
    left: auto;
    right: -1.25rem;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 1rem;
  background-color: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonial {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  color: #4b5563;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
  background-color: #e5e7eb;
}

.testimonial-name {
  font-weight: 600;
  color: #1f2937;
}

.testimonial-position {
  color: #6b7280;
  font-size: 0.875rem;
}

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

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

/* FAQ Section */
.faq {
  padding: 6rem 1rem;
  background-color: white;
}

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

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #1f2937;
  padding: 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-question:hover {
  color: #3b82f6;
  background-color: rgba(219, 234, 254, 0.3);
}

.faq-question::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgba(219, 234, 254, 0);
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.faq-question:hover::before {
  background-color: rgba(219, 234, 254, 0.3);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #6b7280;
}

.faq-question:hover .faq-icon {
  color: #3b82f6;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #3b82f6;
}

.faq-answer {
  margin-top: 0.5rem;
  color: #6b7280;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  padding: 0 0.75rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0.75rem 0.75rem 1rem;
}

/* CTA Section */
.cta {
  padding: 6rem 1rem;
  background: linear-gradient(to right, #2563eb, #22d3ee);
  color: white;
  text-align: center;
}

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

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

.cta p {
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

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

.button-secondary {
  background-color: white;
  color: #2563eb;
}

.button-secondary:hover {
  background-color: #f9fafb;
}

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

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 4rem 1rem 2rem;
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
}

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

.footer-branding {
  display: flex;
  flex-direction: column;
}

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

.footer-logo img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.75rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #3b82f6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

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

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #374151;
  border-radius: 50%;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-social-icon:hover {
  background-color: #3b82f6;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.footer-social-icon:active {
  transform: translateY(0) scale(0.95);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-social-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
}

.footer-social-icon:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.2;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  color: #9ca3af;
  text-align: center;
}

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

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease-in-out;
}

.footer-legal a:hover {
  color: white;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}