/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 400;
}

/* Selection styles */
::selection {
  background-color: rgba(184, 134, 11, 0.3);
  color: white;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* Background Elements */
.bg-grid-pattern {
  background-image: url("public/grid.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  mask-image: linear-gradient(180deg, white, rgba(255, 255, 255, 0));
}

.bg-gradient-overlay {
  background: linear-gradient(
    to top,
    #000000,
    rgba(10, 10, 10, 0.5),
    transparent
  );
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 1.25rem 0;
  background: transparent;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 6px -1px rgba(184, 134, 11, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 3rem;
  width: auto;
  transition: all 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(184, 134, 11, 0.6));
}

.logo-icon {
  height: 2.5rem;
  transition: all 0.5s ease;
}

.logo-icon:hover {
  transform: scale(1.1) rotate(2deg);
}

.logo-text {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont,
    sans-serif;
}

.logo-text-auto {
  background: linear-gradient(to right, #b8860b, #daa520, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text-mative {
  background: linear-gradient(to right, #daa520, #b8860b, #8b6914);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-bg {
  animation: pulse 2s infinite;
}

.logo-hexagon {
  transition: all 0.7s ease;
}

.logo-hexagon:hover {
  filter: drop-shadow(0 0 20px rgba(184, 134, 11, 0.5));
}

.logo-center {
  animation: logo-spin-slow 12s linear infinite;
}

.logo-decorations {
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes logo-spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Navigation */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  color: white;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.menu-icon,
.close-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(55, 65, 81, 0.5);
  animation: fade-in 0.5s ease-out;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-content {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: white;
}

.mobile-nav-btn {
  width: 100%;
  text-align: center;
  padding: 0.75rem;
}

/* Buttons */
.btn {
  position: relative;
  font-weight: bold;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.5rem;
  filter: blur(12px);
}

.btn:hover::before {
  opacity: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(to right, #b8860b, #8b6914);
  color: white;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(to right, #daa520, #b8860b);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(to right, #2a2a2a, #1a1a1a);
  color: white;
  border: 1px solid #b8860b;
  box-shadow: 0 2px 10px rgba(184, 134, 11, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(to right, #3a3a3a, #2a2a2a);
  border-color: #daa520;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: linear-gradient(to right, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(to right, #34d399, #10b981);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}

.btn-content {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Main Content */
.main {
  position: relative;
}

/* Hero Section */
.hero {
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 10rem 0 8rem;
  }
}

.hero-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease-out;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    rgba(184, 134, 11, 0.15),
    rgba(218, 165, 32, 0.15)
  );
  border: 1px solid rgba(184, 134, 11, 0.4);
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.hero-badge-dot {
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
}

.hero-badge-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #b8860b;
  animation: ping 2s infinite;
}

.hero-badge-dot::after {
  content: "";
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #b8860b;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.hero-badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  background: linear-gradient(to right, #b8860b, #daa520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.hero-buttons .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons .btn {
    width: auto;
  }
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(55, 65, 81, 0.5);
  backdrop-filter: blur(4px);
}

.hero-feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(184, 134, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8860b;
  border: 1px solid rgba(184, 134, 11, 0.3);
}

.hero-feature-content {
  text-align: left;
}

.hero-feature-content h3 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-feature-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Premium Typography */
.premium-title {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.premium-subtitle {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.premium-text {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(to right, #b8860b, #daa520, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 700;
}

/* Marquee */
.marquee-section {
  margin-top: 5rem;
}

.marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(55, 65, 81, 0.5);
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 10;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #0b0b0b, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #0b0b0b, transparent);
}

.marquee-content {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-right .marquee-content {
  animation: marquee 30s linear infinite reverse;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 2rem;
}

.marquee-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #b8860b;
}

.marquee-item span {
  color: rgba(255, 255, 255, 0.8);
}

/* Gradient Orbs */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(128px);
  z-index: -10;
}

.gradient-orb-1 {
  top: 25%;
  left: -25%;
  width: 50%;
  height: 50%;
  background: rgba(184, 134, 11, 0.15);
}

.gradient-orb-2 {
  bottom: 25%;
  right: -25%;
  width: 50%;
  height: 50%;
  background: rgba(218, 165, 32, 0.15);
}

/* Section Styles */
section {
  position: relative;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(
    to right,
    rgba(184, 134, 11, 0.15),
    rgba(218, 165, 32, 0.15)
  );
  border: 1px solid rgba(184, 134, 11, 0.4);
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.2);
}

.section-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  background: linear-gradient(to right, #b8860b, #daa520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about {
  background: linear-gradient(to bottom, #000000, #0a0a0a);
}

.about::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: rgba(184, 134, 11, 0.12);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 50%;
  height: 50%;
  background: rgba(218, 165, 32, 0.12);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.about-content {
  max-width: 64rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease-out;
}

.about-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-card {
  position: relative;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  border-radius: 1rem;
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  border-color: rgba(184, 134, 11, 0.5);
  box-shadow: 0 25px 50px -12px rgba(184, 134, 11, 0.2);
}

.about-card-icon {
  background: linear-gradient(
    to bottom right,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  color: #b8860b;
  border: 1px solid rgba(184, 134, 11, 0.3);
}

.about-card:hover .about-card-icon {
  transform: scale(1.1);
  color: #daa520;
}

.about-card h3 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.about-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* Services Section */
.services {
  background: linear-gradient(to bottom, #111111, #0b0b0b);
}

.services::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25%;
  width: 50%;
  height: 50%;
  background: rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.services::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 50%;
  background: rgba(0, 20, 140, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.services-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease-out;
}

.services-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  position: relative;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  border-radius: 1rem;
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 25px 50px -12px rgba(184, 134, 11, 0.1);
}

.service-card-icon {
  background: linear-gradient(
    to bottom right,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
  color: #b8860b;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
  color: #daa520;
}

.service-card-content h3 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.service-features li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #b8860b;
}

.services-cta {
  display: flex;
  justify-content: center;
}

.services-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(55, 65, 81, 0.5);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-link:hover {
  border-color: rgba(184, 134, 11, 0.3);
  color: white;
}

.services-link svg {
  transition: transform 0.3s ease;
}

.services-link:hover svg {
  transform: translateX(4px);
}

/* AI Agents Section */
.ai-agents {
  background: linear-gradient(to bottom, #111111, #0b0b0b);
}

.ai-agents::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.ai-agents::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 50%;
  height: 50%;
  background: rgba(218, 165, 32, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.ai-agents-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease-out;
}

.ai-agents-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.ai-agents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .ai-agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ai-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease;
}

.ai-feature:hover {
  background: rgba(26, 26, 26, 0.5);
}

.ai-feature-icon {
  background: linear-gradient(
    to bottom right,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #b8860b;
}

.ai-feature:hover .ai-feature-icon {
  transform: scale(1.1);
  color: #daa520;
}

.ai-feature-content h3 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.ai-feature-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.ai-agents-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(55, 65, 81, 0.5);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.ai-agents-link:hover {
  border-color: rgba(184, 134, 11, 0.3);
  color: white;
}

.ai-agents-link svg {
  transition: transform 0.3s ease;
}

.ai-agents-link:hover svg {
  transform: translateX(4px);
}

.ai-agents-visual {
  position: relative;
}

.ai-visual-container {
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  border-radius: 1rem;
  filter: blur(24px);
  opacity: 0.75;
}

.ai-visual-image {
  position: relative;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.5s ease;
}

.ai-visual-image:hover {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 25px 50px -12px rgba(184, 134, 11, 0.1);
}

.ai-visual-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .ai-visual-image img {
    height: 500px;
  }
}

.ai-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.9),
    rgba(17, 17, 17, 0.5),
    transparent
  );
}

.ai-chat {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ai-chat-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #b8860b, #daa520);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.ai-chat-info h4 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 600;
  color: white;
}

.ai-chat-info p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ai-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-message {
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 0.75rem;
  border-radius: 0.5rem;
  max-width: 80%;
  animation: fade-in 0.5s ease-out;
}

.ai-message.user {
  background: rgba(55, 65, 81, 0.3);
  border: 1px solid rgba(75, 85, 99, 0.2);
  margin-left: auto;
}

.ai-message p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.ai-typing {
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 0.75rem;
  border-radius: 0.5rem;
  max-width: 80%;
  display: flex;
  gap: 0.25rem;
}

.ai-typing-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #b8860b;
  animation: bounce 1.4s infinite ease-in-out;
}

.ai-typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.ai-typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* Projects Section */
.projects {
  background: linear-gradient(to bottom, #111111, #0b0b0b);
}

.projects::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.projects::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 50%;
  height: 50%;
  background: rgba(218, 165, 32, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.projects-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease-out;
}

.projects-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  position: relative;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  border-radius: 1rem;
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 25px 50px -12px rgba(184, 134, 11, 0.1);
}

.project-image {
  height: 400px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .project-image {
    height: 450px;
  }
}

@media (min-width: 768px) {
  .project-image {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .project-image {
    height: 450px;
  }
}

@media (min-width: 1280px) {
  .project-image {
    height: 500px;
  }
}

.project-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.9),
    rgba(17, 17, 17, 0.5),
    transparent
  );
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 0.4;
}

.project-content {
  padding: 1.5rem;
}

.project-content h3 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
  color: #b8860b;
}

.project-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #b8860b;
  text-decoration: none;
  transition: color 0.3s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
}

.project-link:hover {
  color: #daa520;
}

.project-link svg {
  transition: transform 0.3s ease;
}

.project-link:hover svg {
  transform: translateX(4px);
}

/* Methodology Section */
.methodology {
  background: linear-gradient(to bottom, #111111, #0b0b0b);
}

.methodology::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.methodology::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 50%;
  height: 50%;
  background: rgba(218, 165, 32, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.methodology-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease-out;
}

.methodology-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.methodology-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .methodology-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .methodology-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.methodology-step {
  position: relative;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.methodology-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  border-radius: 1rem;
  filter: blur(24px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.methodology-step:hover::before {
  opacity: 1;
}

.methodology-step:hover {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 25px 50px -12px rgba(184, 134, 11, 0.1);
}

.step-number {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  background: linear-gradient(to right, #b8860b, #daa520);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.step-icon {
  background: linear-gradient(
    to bottom right,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  color: #b8860b;
}

.methodology-step:hover .step-icon {
  transform: scale(1.1);
  color: #daa520;
}

.methodology-step h3 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.methodology-step p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.step-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.step-features li::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #b8860b;
}

.methodology-cta {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.methodology-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(55, 65, 81, 0.5);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.methodology-link:hover {
  border-color: rgba(184, 134, 11, 0.3);
  color: white;
}

.methodology-link svg {
  transition: transform 0.3s ease;
}

.methodology-link:hover svg {
  transform: translateX(4px);
}

/* Comparison Section */
.comparison {
  background: linear-gradient(to bottom, #111111, #0b0b0b);
}

.comparison::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.comparison::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 50%;
  height: 50%;
  background: rgba(218, 165, 32, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.comparison-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease-out;
}

.comparison-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.comparison-table {
  margin-top: 4rem;
}

.table-container {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: rgba(184, 134, 11, 0.1);
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.table-cell {
  padding: 1.5rem;
  font-weight: 600;
  color: white;
  border-right: 1px solid rgba(55, 65, 81, 0.5);
}

.table-cell:last-child {
  border-right: none;
}

.table-subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.table-row:last-child {
  border-bottom: none;
}

.table-row .table-cell {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-row .table-cell:first-child {
  justify-content: flex-start;
}

.status-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.status-yes {
  color: #daa520;
}

.status-no {
  color: #ef4444;
}

.status-sometimes {
  color: #f59e0b;
}

/* Mobile Comparison */
.comparison-mobile {
  margin-top: 4rem;
}

.comparison-card {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.comparison-card-header {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: white;
  text-align: left;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.comparison-card-header:hover {
  background: rgba(184, 134, 11, 0.1);
}

.chevron-icon {
  transition: transform 0.3s ease;
}

.comparison-card.active .chevron-icon {
  transform: rotate(180deg);
}

.comparison-card-content {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.comparison-card.active .comparison-card-content {
  display: block;
}

.comparison-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.comparison-item:last-child {
  border-bottom: none;
}

.comparison-item span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* CTA Section */
.cta {
  background: linear-gradient(to bottom, #111111, #0b0b0b);
}

.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 50%;
  background: rgba(184, 134, 11, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 50%;
  height: 50%;
  background: rgba(218, 165, 32, 0.2);
  border-radius: 50%;
  filter: blur(96px);
  z-index: -10;
}

.cta-content {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1s ease-out;
}

.cta-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-whatsapp {
  margin-bottom: 3rem;
}

.cta-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cta-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 25px 50px -12px rgba(184, 134, 11, 0.1);
}

.benefit-icon {
  background: linear-gradient(
    to bottom right,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  padding: 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: #b8860b;
  flex-shrink: 0;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  color: #daa520;
}

.benefit-content h3 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.cta-form {
  position: relative;
}

.form-container {
  background: rgba(26, 26, 26, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  overflow: hidden;
  height: 600px;
}

.typebot-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* AI Chat Form */
.ai-chat-container {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 1rem;
  border: 1px solid rgba(184, 134, 11, 0.3);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(184, 134, 11, 0.2);
  max-width: 500px;
  margin: 0 auto;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(
    to right,
    rgba(184, 134, 11, 0.1),
    rgba(218, 165, 32, 0.1)
  );
  border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}

.ai-chat-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #b8860b, #daa520);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.ai-chat-info h4 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.ai-status {
  font-size: 0.875rem;
  color: #daa520;
  font-weight: 500;
}

.ai-chat-messages {
  height: 400px;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ai-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ai-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #b8860b, #daa520);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.message-content {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  max-width: 80%;
}

.message-content p {
  margin: 0 0 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.5;
}

.message-content p:last-child {
  margin-bottom: 0;
}

.user-message {
  flex-direction: row-reverse;
}

.user-message .message-content {
  background: linear-gradient(
    to right,
    rgba(184, 134, 11, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  border-color: rgba(184, 134, 11, 0.4);
}

.ai-chat-input {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.8);
  border-top: 1px solid rgba(184, 134, 11, 0.3);
}

.ai-chat-input input {
  flex: 1;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.ai-chat-input input:focus {
  outline: none;
  border-color: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.ai-chat-input input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.send-btn {
  background: linear-gradient(to right, #b8860b, #daa520);
  border: none;
  border-radius: 0.75rem;
  padding: 0.75rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-btn:hover {
  background: linear-gradient(to right, #daa520, #b8860b);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.typing-dots {
  display: flex;
  gap: 0.25rem;
}

.typing-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #b8860b;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, #000000, #000000);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(184, 134, 11, 0.4);
}

.footer-content {
  text-align: center;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo .logo {
  justify-content: center;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 134, 11, 0.4);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal-container {
  position: relative;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 1rem;
  max-width: 48rem;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  animation: fade-in 0.3s ease-out;
}

.modal-content {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(55, 65, 81, 0.5);
}

.modal-header h3 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.modal-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
}

/* Responsive Utilities */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

/* Utility Classes */
.animate-fade-in {
  animation: fade-in 0.5s ease-out forwards;
}

.animate-logo-spin {
  animation: logo-spin-slow 8s linear infinite;
}

.animate-logo-spin-slow {
  animation: logo-spin-slow 12s linear infinite;
}
