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

:root {
  --primary: #d4a847;
  --primary-dark: #b8922e;
  --primary-foreground: #0d0d0d;
  --background: #0d0d0d;
  --foreground: #f5f5f5;
  --muted: #2a2a2a;
  --muted-foreground: #9a9a9a;
  --border: #2a2a2a;
  --card: #1a1a1a;
  --light-bg: #f5f5f5;
  --light-border: #e5e5e5;
  --olive: #6b7c3f;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: #FFD600;
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--muted-foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-white {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-white:hover {
  background-color: #e5e5e5;
}

.btn-ghost {
  background-color: transparent;
  color: var(--background);
}

.btn-ghost:hover {
  color: #FFD600;
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--card);
}

.top-bar {
  background-color: var(--background);
  padding: 0.375rem 0;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-right {
  display: none;
}

@media (min-width: 768px) {
  .top-bar-right {
    display: flex;
  }
}

.top-link {
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.top-link:hover {
  color: var(--foreground);
}

.top-text {
  color: var(--muted-foreground);
}

.icon-circle {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: rgba(154, 154, 154, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
}

/* Country Selector */
.country-selector {
  position: relative;
  margin-left: 1rem;
}

.country-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.country-btn:hover {
  color: var(--foreground);
}

.country-btn .chevron {
  transition: transform 0.2s;
}

.country-btn.active .chevron {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: none;
  z-index: 100;
}

.country-dropdown.open {
  display: block;
}

.country-dropdown-header {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.country-list {
  max-height: 20rem;
  overflow-y: auto;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
}

.country-item:hover {
  background-color: var(--muted);
}

.country-item.active {
  background-color: rgba(212, 168, 71, 0.1);
  color: #FFD600;
}

.country-item .flag {
  font-size: 1.125rem;
}

.country-item .check {
  margin-left: auto;
  color: #FFD600;
}

/* Main Navigation */
.main-nav {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.logo span {
  color: #FFD600;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links li a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.nav-links li a:hover,
.nav-links li.active a {
  color: var(--foreground);
}

.nav-links li a .chevron {
  transition: transform 0.2s;
}

.nav-links li.active a .chevron {
  transform: rotate(180deg);
}

.nav-buttons {
  display: none;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .nav-buttons {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

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

/* Mega Menu */
.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  background-color: var(--light-bg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 50;
  display: none;
}

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

.mega-menu-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

.mega-menu-sidebar {
  width: 18rem;
  background-color: #ebebeb;
  padding: 1.5rem 0;
}

.mega-category {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s;
  color: rgba(13, 13, 13, 0.7);
}

.mega-category:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.mega-category.active {
  background-color: white;
  color: var(--background);
}

.mega-category-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: var(--background);
  transition: all 0.2s;
}

.mega-category.active .mega-category-icon {
  background-color: #FFD600;
  color: var(--primary-foreground);
}

.mega-category-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.mega-category-desc {
  font-size: 0.75rem;
  color: rgba(13, 13, 13, 0.6);
}

.mega-menu-content {
  flex: 1;
  background-color: white;
  padding: 1.5rem 2rem;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mega-column-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--background);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.mega-column-desc {
  font-size: 0.75rem;
  color: rgba(13, 13, 13, 0.6);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--background);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.mega-link:hover {
  background-color: var(--light-bg);
}

.mega-link-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background-color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.mega-link:hover .mega-link-icon {
  background-color: white;
}

.mega-link-icon svg {
  color: rgba(13, 13, 13, 0.7);
}

.mega-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ebebeb;
}

.mega-footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--background);
  border-radius: 9999px;
  color: var(--background);
  font-weight: 500;
  transition: all 0.2s;
}

.mega-footer-btn:hover {
  background-color: var(--background);
  color: white;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem;
}

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

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.mobile-country-selector {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-country-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.mobile-country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-height: 15rem;
  overflow-y: auto;
}

.mobile-country-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color 0.2s;
}

.mobile-country-btn:hover {
  background-color: var(--muted);
}

.mobile-country-btn.active {
  background-color: rgba(212, 168, 71, 0.1);
  color: #FFD600;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 7rem;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  padding: 4rem 1rem 6rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title-yellow {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: #FFD600;
  letter-spacing: -0.025em;
}

.hero-title-white {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--foreground);
  font-style: italic;
  letter-spacing: -0.025em;
}

.hero-title-gray {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: rgba(154, 154, 154, 0.5);
  letter-spacing: -0.025em;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 28rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-trusted {
  font-size: 0.75rem;
  color: rgba(154, 154, 154, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .hero-stats {
    padding-left: 3rem;
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 0.25rem;
}

.stat-card-primary {
  background-color: #FFD600;
  color: var(--primary-foreground);
}

.stat-card-dark {
  background-color: var(--card);
  border: 1px solid var(--border);
}

.stat-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card-primary .stat-icon {
  background-color: rgba(13, 13, 13, 0.2);
}

.stat-card-dark .stat-icon {
  background-color: var(--muted);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.stat-card-dark .stat-label {
  color: var(--muted-foreground);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.stat-value-accent {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFD600;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
}

/* Solutions Section */
.solutions {
  background-color: var(--light-bg);
  padding: 5rem 0 7rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--card);
  letter-spacing: -0.025em;
}

.section-title-dark {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--card);
  letter-spacing: -0.025em;
}

.section-title-white {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

.text-yellow {
  color: #FFD600;
}

.italic {
  font-style: italic;
}

.section-description {
  margin-top: 1rem;
  color: var(--muted-foreground);
  max-width: 32rem;
}

.solutions-grid {
  display: grid;
  gap: 1.5rem;
}

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

.solution-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0.25rem;
  overflow: hidden;
  cursor: pointer;
}

.solution-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.solution-card:hover .solution-image {
  transform: scale(1.05);
}

.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card), rgba(26, 26, 26, 0.6), transparent);
}

.solution-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background-color: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: var(--foreground);
}

.solution-tag svg {
  color: #FFD600;
}

.solution-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.solution-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

/* Partners Section */
.partners {
  background-color: var(--light-bg);
  padding: 4rem 0;
  border-top: 1px solid var(--light-border);
}

.partners-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .partners-logos {
    gap: 5rem;
  }
}

.partner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.2s;
}

.partner:hover {
  color: var(--card);
}

.partner-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(154, 154, 154, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Why Section */
.why-section {
  background-color: var(--light-bg);
  padding: 5rem 0 7rem;
}

.why-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}

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

.why-content {
  position: sticky;
  top: 8rem;
}

.why-description {
  color: var(--muted-foreground);
  max-width: 28rem;
  margin-bottom: 2rem;
}

.why-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--card);
  font-weight: 500;
  transition: color 0.2s;
}

.why-link:hover {
  color: #FFD600;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

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

.feature-card {
  background-color: var(--foreground);
  padding: 1.5rem;
  border-radius: 0.25rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.25rem;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--card);
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--card);
  margin-bottom: 0.5rem;
}

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

/* Success Stories Section */
.success-stories {
  background-color: var(--background);
  padding: 5rem 0 7rem;
}

.section-header-dark {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .section-header-dark {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  color: var(--foreground);
}

.filter-btn.active {
  background-color: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}

.stories-grid {
  display: grid;
  gap: 1.5rem;
}

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

.story-card {
  cursor: pointer;
}

.story-card.hidden {
  display: none;
}

.story-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.story-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.story-card:hover .story-bg {
  transform: scale(1.05);
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.8), transparent);
}

.story-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background-color: #FFD600;
  color: var(--primary-foreground);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.story-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.story-card:hover h3 {
  color: #FFD600;
}

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

/* CTA Section */
.cta {
  background-color: var(--olive);
  padding: 5rem 0 7rem;
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Footer */
.footer {
  background-color: var(--background);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

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

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 1.5rem 0;
}

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

.social-links a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.footer-newsletter h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-newsletter p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.5rem 1rem;
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: var(--foreground);
}

.newsletter-form input::placeholder {
  color: var(--muted-foreground);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #FFD600;
}

.newsletter-form button {
  padding: 0.5rem 1rem;
  background-color: #FFD600;
  color: var(--primary-foreground);
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.newsletter-form button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  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 {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

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

.footer-legal a {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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