/* CSS Variables */
:root {
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-900: #3b0764;
  --purple-950: #1e0533;
  --violet-400: #a78bfa;
  --violet-600: #7c3aed;
  --violet-900: #4c1d95;
  --violet-950: #2e1065;
  --fuchsia-600: #c026d3;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  cursor: default;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, var(--purple-400), var(--violet-400), var(--fuchsia-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(to right, var(--purple-600), var(--violet-600));
  color: #fff;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

.btn-primary .btn-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--violet-600), var(--fuchsia-600));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-overlay {
  opacity: 1;
}

.btn-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(168, 85, 247, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

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

.hero-gradient-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(59, 7, 100, 0.2), transparent, rgba(76, 29, 149, 0.2));
}

.hero-gradient-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top left, rgba(147, 51, 234, 0.2), transparent 50%);
}

.hero-gradient-3 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom right, rgba(124, 58, 237, 0.2), transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--purple-500);
  border-radius: 50%;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot-1 {
  top: 25%;
  left: 25%;
}

.dot-2 {
  top: 33%;
  right: 33%;
  animation-delay: 1s;
}

.dot-3 {
  bottom: 25%;
  left: 33%;
  animation-delay: 2s;
  background: var(--fuchsia-600);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 8rem 1.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.1);
  backdrop-filter: blur(8px);
}

.badge-icon {
  color: var(--purple-400);
}

.hero-badge span {
  font-size: 0.875rem;
  color: var(--purple-400);
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--purple-600), var(--violet-600));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
  color: #fff;
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--purple-400), var(--violet-400), var(--fuchsia-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .logo-text {
    font-size: 2.5rem;
  }
}

.hero-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

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

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

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

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

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

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

.hero-process {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.process-item {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-800);
  background: rgba(17, 24, 39, 0.3);
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
  color: #d1d5db;
  transition: all 0.3s ease;
}

.process-item:hover {
  border-color: rgba(168, 85, 247, 0.5);
  color: var(--purple-400);
}

.process-arrow {
  color: var(--purple-500);
  font-size: 1.25rem;
  font-weight: 300;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-dot {
  width: 4px;
  height: 12px;
  background: var(--purple-500);
  border-radius: 9999px;
}

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

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

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: rgba(168, 85, 247, 0.1);
  color: var(--purple-400);
  font-size: 0.875rem;
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Industries Section */
.industries {
  position: relative;
  padding: 8rem 0;
  background: #000;
  overflow: hidden;
}

.industries-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000, rgba(59, 7, 100, 0.1), #000);
}

.industries-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59, 7, 100, 0.1), transparent 70%);
}

.industries-slider {
  position: relative;
  z-index: 10;
}

.industries-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 1rem;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
}

.industries-viewport::-webkit-scrollbar {
  display: none;
}

.industries-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.industries-track,
.industry-card,
.industry-card * {
  user-select: none;
}

.industries-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1.5rem;
}

.industries-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: rgba(17, 24, 39, 0.8);
  color: var(--purple-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.industries-nav:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.6);
}

.industries-nav-prev {
  left: -0.75rem;
}

.industries-nav-next {
  right: -0.75rem;
}

@media (max-width: 767px) {
  .industries-nav {
    width: 40px;
    height: 40px;
  }

  .industries-nav-prev {
    left: -0.25rem;
  }

  .industries-nav-next {
    right: -0.25rem;
  }
}

.industry-card {
  flex: 0 0 auto;
  position: relative;
  background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0.3));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-800);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color 0.5s ease;
}

.industry-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
}

.card-gradient-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.industry-card:hover .card-gradient-overlay {
  opacity: 0.05;
}

.gradient-purple {
  background: linear-gradient(to bottom right, var(--purple-600), var(--violet-600));
}

.gradient-violet {
  background: linear-gradient(to bottom right, var(--violet-600), var(--fuchsia-600));
}

.gradient-fuchsia {
  background: linear-gradient(to bottom right, var(--fuchsia-600), var(--purple-600));
}

.card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(to bottom right, var(--purple-600), var(--violet-600));
  border-radius: 1rem;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.5s ease;
  z-index: -1;
}

.industry-card:hover .card-glow {
  opacity: 0.2;
}

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

.industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
  color: #fff;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1) rotate(3deg);
}

.industry-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
  color: var(--purple-400);
}

.industry-description {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.industry-features {
  list-style: none;
}

.industry-features li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* Work Process Section */
.process {
  position: relative;
  padding: 8rem 0;
  background: #000;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000, rgba(46, 16, 101, 0.1), #000);
}

.process-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.process-grid-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .process-grid-desktop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.process-step {
  position: relative;
}

.step-connector {
  position: absolute;
  top: 5rem;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(147, 51, 234, 0.5), transparent);
  z-index: 0;
}

.process-step:last-child .step-connector {
  display: none;
}

.step-card {
  position: relative;
  z-index: 10;
  background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-800);
  backdrop-filter: blur(8px);
  height: 100%;
  transition: border-color 0.5s ease;
}

.step-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background: linear-gradient(to bottom right, var(--purple-600), var(--violet-600));
  color: #fff;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--purple-400);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
  border-color: rgba(168, 85, 247, 0.5);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: var(--purple-400);
}

.step-description {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Mobile Process */
.process-grid-mobile {
  display: block;
}

@media (min-width: 1024px) {
  .process-grid-mobile {
    display: none;
  }
}

.process-step-mobile {
  background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-800);
  backdrop-filter: blur(8px);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-mobile-left {
  flex-shrink: 0;
  position: relative;
}

.step-mobile-number {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  width: 32px;
  height: 32px;
  background: linear-gradient(to bottom right, var(--purple-600), var(--violet-600));
  color: #fff;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(147, 51, 234, 0.3);
  z-index: 10;
}

.step-mobile-icon {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
}

.step-mobile-right {
  flex: 1;
  padding-top: 0.5rem;
}

.step-mobile-connector {
  margin-left: 2rem;
  margin-top: 0.5rem;
  width: 2px;
  height: 1.5rem;
  background: linear-gradient(to bottom, rgba(147, 51, 234, 0.5), transparent);
}

.process-cta {
  text-align: center;
  margin-top: 5rem;
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.1), rgba(124, 58, 237, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.3);
  backdrop-filter: blur(8px);
}

.process-cta .btn {
  min-width: 240px;
}

.cta-text {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

/* Contact Section */
.contact {
  position: relative;
  padding: 8rem 0;
  background: #000;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #000, rgba(46, 16, 101, 0.15), #000);
}

.contact-wrapper {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: linear-gradient(to bottom right, rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.3));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--gray-800);
  backdrop-filter: blur(8px);
}

@media (min-width: 640px) {
  .contact-form {
    padding: 2.5rem;
  }
}

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

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

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

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--gray-800);
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: #fff;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

/* Custom Select Dropdown */
.custom-select {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid var(--gray-800);
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: #fff;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.custom-select-trigger:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select-text {
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.custom-select.has-value .custom-select-text {
  color: #fff;
}

.custom-select-arrow {
  color: var(--gray-500);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  color: var(--purple-400);
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.98);
  border: 1px solid var(--purple-500);
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: 100;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.custom-select.open .custom-select-options {
  max-height: 280px;
  opacity: 1;
  overflow-y: auto;
}

.custom-select-option {
  padding: 0.875rem 1rem;
  cursor: pointer;
  color: var(--gray-400);
  transition: all 0.2s ease;
  position: relative;
}

.custom-select-option:hover {
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple-400);
}

.custom-select-option.selected {
  background: rgba(168, 85, 247, 0.2);
  color: var(--purple-400);
}

.custom-select-option.selected::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--purple-500);
}

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

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

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
}

.form-status {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem;
  border-radius: 0.5rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Footer */
.footer {
  background: #000;
  border-top: 1px solid var(--gray-900);
  padding: 4rem 0;
}

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

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

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

.footer-brand {
  max-width: 28rem;
}

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

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  box-shadow: 0 5px 20px rgba(147, 51, 234, 0.3);
}

.footer-logo .logo-text {
  font-size: 1.5rem;
}

.footer-description {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(147, 51, 234, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
  color: var(--purple-400);
}

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: var(--gray-400);
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--purple-400);
  transform: translateX(0.25rem);
}

.footer-contact li:not(:has(a)) {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-900);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
}
