/* Base Styles & Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  /* Colors */
  --background-dark: #0f1218;
  --background-darker: #0c0e16;
  --background-medium: #151b27;
  --text-white: #ffffff;
  --text-white-80: rgba(255, 255, 255, 0.8);
  --text-white-70: rgba(255, 255, 255, 0.7);
  --text-white-60: rgba(255, 255, 255, 0.6);
  --text-white-40: rgba(255, 255, 255, 0.4);
  --text-white-30: rgba(255, 255, 255, 0.3);
  --text-white-20: rgba(255, 255, 255, 0.2);
  --text-white-10: rgba(255, 255, 255, 0.1);
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-gradient: linear-gradient(145deg, #7c3aed80, #3b82f666);
  --pink-gradient: linear-gradient(145deg, #db277780, #7c3aed66);
  --teal-gradient: linear-gradient(145deg, #3b82f666, #10b98180);
  --primary-gradient: linear-gradient(to right, #a78bfa, #60a5fa, #818cf8);
  --secondary-gradient: linear-gradient(to right, #f472b6, #e879f9, #a78bfa);

  /* Spacing */
  --section-spacing: 6rem;
  --element-spacing: 2rem;
  --container-padding: 2rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background-dark);
  color: var(--text-white);
  line-height: 1.5;
  font-weight: 400;
  font-feature-settings: "rlig" 1, "calt" 1;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
}

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

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Utility Classes */
.clip-text {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-primary {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.smooth-scroll-container {
  overflow: hidden;
  position: relative;
}

/* Glassmorphism utilities */
.glass {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Blurry Gradients */
.blurry-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.15;
}

.fancy-blur-1 {
  background: var(--blue-gradient);
  transform: rotate(-40deg);
  left: 10%;
  top: -10%;
}

.fancy-blur-2 {
  background: var(--pink-gradient);
  transform: rotate(30deg);
  right: 5%;
  top: -100px;
}

.fancy-blur-3 {
  background: var(--teal-gradient);
  transform: rotate(25deg);
  right: 20%;
  bottom: 20%;
}

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

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

.fade-in {
  opacity: 0;
  animation: fadeIn 0.7s ease-in-out forwards;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

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

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-white);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-white-70);
  max-width: 32rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
  background-color: transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-text,
.navbar.scrolled .nav-link {
  color: #1f2937;
}

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

.navbar-logo .logo-link {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.navbar-menu {
  display: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  color: var(--text-white);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--text-white);
  transition: width 0.3s ease;
}

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

.navbar-cta {
  display: none;
}

.cta-button {
  display: inline-block;
  background-color: var(--text-white);
  color: #1f2937;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.mobile-menu-button {
  color: var(--text-white);
  font-size: 1.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--text-white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.3s ease;
  z-index: 100;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-nav-link {
  color: #1f2937;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-cta-button {
  display: inline-block;
  background-color: #1f2937;
  color: var(--text-white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
    gap: 2rem;
  }
  
  .navbar-cta {
    display: block;
  }
  
  .mobile-menu-button {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--background-dark), var(--background-medium));
}

.hero-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

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

.hero p {
  color: var(--text-white-80);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.typewriter {
  display: inline-block;
  height: 1.25em;
  position: relative;
}

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

.glass-button {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.glass-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.outline-button {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
  transition: background-color 0.3s ease;
}

.outline-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 1.875rem;
  color: var(--text-white-70);
  transition: color 0.3s ease;
}

.scroll-indicator:hover i {
  color: var(--text-white);
}

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

/* Services Section */
.services {
  padding: var(--section-spacing) 0;
  background: linear-gradient(to bottom, var(--background-medium), var(--background-darker));
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  height: 100%;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-white-70);
}

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

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

/* Technologies Section */
.technologies {
  padding: var(--section-spacing) 0;
  background: linear-gradient(to bottom, var(--background-darker), var(--background-medium));
}

.tech-section {
  margin-bottom: 4rem;
}

.tech-section:last-child {
  margin-bottom: 0;
}

.tech-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
}

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

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-icon-wrapper {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

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

.tech-icon-wrapper img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.tech-icon span {
  font-size: 0.875rem;
  color: var(--text-white-80);
}

@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .tech-icon-wrapper {
    width: 5rem;
    height: 5rem;
  }
  
  .tech-icon-wrapper img {
    width: 3rem;
    height: 3rem;
  }
}

/* Work Section */
.work {
  padding: var(--section-spacing) 0;
  background: linear-gradient(to bottom, var(--background-darker), var(--background-medium));
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.project-card {
  height: 100%;
}

.project-link {
  display: block;
  height: 100%;
  transition: transform 0.3s ease;
}

.project-link:hover {
  transform: scale(1.03);
}

.project-image {
  height: 16rem;
  overflow: hidden;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-in-out;
}

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

.project-info {
  padding: 1.5rem;
}

.project-category {
  font-size: 0.875rem;
  color: var(--text-white-60);
  font-weight: 500;
}

.project-title {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.project-link:hover .project-title {
  color: var(--blue-400);
}

.project-view {
  display: flex;
  align-items: center;
  color: var(--blue-400);
  font-weight: 500;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-link:hover .project-view {
  opacity: 1;
}

.project-view i {
  margin-left: 0.25rem;
  font-size: 1rem;
}

.view-all {
  text-align: center;
  margin-top: 4rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue-400);
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-all-link:hover {
  color: var(--blue-300);
}

.view-all-link i {
  margin-left: 0.5rem;
  font-size: 1rem;
}

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

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

/* Testimonials Section */
.testimonials {
  padding: var(--section-spacing) 0;
  background: linear-gradient(to bottom, var(--background-medium), var(--background-darker));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card i {
  color: var(--blue-400);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.testimonial-card > p {
  color: var(--text-white-80);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

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

.author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-weight: 600;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-white-60);
}

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

/* About Section */
.about {
  padding: var(--section-spacing) 0;
  background: linear-gradient(to bottom, var(--background-medium), var(--background-darker));
  position: relative;
  overflow: hidden;
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-content h3 {
  font-weight: 600;
}

.about-content p {
  color: var(--text-white-70);
}

.about-image {
  height: 24rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.team-photo {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

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

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-member p {
  color: var(--text-white-60);
}

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

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

/* Contact Section */
.contact {
  padding: var(--section-spacing) 0;
  background: linear-gradient(to bottom, var(--background-darker), var(--background-medium));
}

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

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--text-white-70);
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
}

.method-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.method-icon i {
  font-size: 1.25rem;
  color: var(--text-white);
}

.method-details h4 {
  font-size: 0.875rem;
  color: var(--text-white-60);
  font-weight: 500;
}

.method-details p {
  font-size: 1.125rem;
  color: var(--text-white);
}

.contact-form-container {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-white-80);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.25);
}

.submit-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--blue-500);
  color: var(--text-white);
  border-radius: var(--radius-lg);
  font-size: 1.125rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
}

.submit-button:hover {
  background-color: var(--blue-600);
}

.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  height: 100%;
}

.success-icon {
  background-color: rgba(96, 165, 250, 0.2);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon i {
  font-size: 2.5rem;
  color: var(--blue-400);
}

.success-message h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--text-white-70);
}

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

/* Footer */
.footer {
  background-color: rgba(10, 12, 18, 1);
  color: var(--text-white-80);
  padding: 4rem 0;
}

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

.footer-about {
  max-width: 24rem;
}

.footer-logo {
  display: inline-block;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: var(--text-white-60);
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-white-60);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--text-white);
}

.social-links i {
  font-size: 1.25rem;
}

.footer-links h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

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

.footer-links a {
  color: var(--text-white-60);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer-bottom p {
  color: var(--text-white-40);
  font-size: 0.875rem;
}

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

.footer-legal a {
  font-size: 0.875rem;
  color: var(--text-white-40);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--text-white-80);
}

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

/* Media Queries */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}
