/* ===== CSS Variables ===== */
:root {
  --background: #1a1c2e;
  --foreground: #f8f9fa;
  --card: #242640;
  --card-foreground: #f8f9fa;
  --primary: #c9a962;
  --primary-foreground: #1a1c2e;
  --secondary: #3a3d5c;
  --secondary-foreground: #f8f9fa;
  --muted: #2d3048;
  --muted-foreground: #9ca3af;
  --border: #3a3d5c;
  --radius: 0.5rem;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

input, textarea {
  font-family: inherit;
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  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;
  }
}

.hidden {
  display: none !important;
}

.hide-mobile {
  display: none;
}

@media (min-width: 640px) {
  .hide-mobile {
    display: flex;
  }
}

.text-primary {
  color: var(--primary);
}

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

/* ===== Icons ===== */
.icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.icon-sm {
  width: 1rem;
  height: 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: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background-color: rgba(201, 169, 98, 0.9);
}

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

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

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

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

.btn-block {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(26, 28, 46, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-top {
  border-bottom: 1px solid rgba(58, 61, 92, 0.5);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.header-contact-item:hover {
  color: var(--primary);
}

.header-lang {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted-foreground);
}

.header-lang span {
  cursor: pointer;
  transition: color 0.2s;
}

.header-lang span:hover,
.header-lang .active {
  color: var(--foreground);
}

.header-lang .divider {
  opacity: 0.5;
}

.header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.logo-tagline {
  font-size: 0.625rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Navigation */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu > div,
.dropdown-menu {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  color: var(--foreground);
  background-color: rgba(45, 48, 72, 0.5);
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

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

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  padding: 0.625rem;
  color: var(--muted-foreground);
}

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

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
}

.mobile-submenu {
  padding-left: 1rem;
}

.mobile-submenu a {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), rgba(26, 28, 46, 0.95), rgba(26, 28, 46, 0.6));
}

.hero .container {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(201, 169, 98, 0.1);
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 9999px;
  width: fit-content;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-badge span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

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

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

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background-color: var(--border);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Featured card */
.hero-featured {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-featured {
    display: block;
  }
}

.featured-glow {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 18rem;
  height: 18rem;
  background-color: rgba(201, 169, 98, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.featured-card {
  position: relative;
  background-color: rgba(36, 38, 64, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.featured-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

.featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.featured-desc {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

.featured-moq-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.featured-moq-value {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(156, 163, 175, 0.3);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.25rem;
}

.scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background-color: var(--primary);
  border-radius: 9999px;
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.5rem);
  }
}

/* ===== Section Styles ===== */
.section-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
}

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

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

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

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

.section-header-center {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--primary);
}

.link-arrow:hover {
  text-decoration: underline;
}

/* ===== Products Section ===== */
.products-section {
  padding: 6rem 0;
  background-color: var(--background);
}

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

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

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

.product-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: rgba(201, 169, 98, 0.5);
}

.product-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(248, 249, 250, 0.05);
  z-index: 1;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card), transparent);
}

.product-content {
  padding: 1.5rem;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.product-name {
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.2s;
}

.product-card:hover .product-name {
  color: var(--primary);
}

.product-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-arrow {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.product-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--foreground);
  transition: color 0.2s;
}

.product-card:hover .product-arrow {
  background-color: var(--primary);
}

.product-card:hover .product-arrow svg {
  color: var(--primary-foreground);
}

.product-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Features Section ===== */
.features-section {
  padding: 6rem 0;
  background-color: var(--card);
}

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

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

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

.feature-card {
  padding: 2rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(201, 169, 98, 0.5);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(201, 169, 98, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.2s;
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  transition: color 0.2s;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
}

.feature-card:hover .feature-icon svg {
  color: var(--primary-foreground);
}

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

.feature-desc {
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ===== Factory Section ===== */
.factory-section {
  padding: 6rem 0;
  background-color: var(--background);
}

.factory-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.factory-image-wrapper {
  position: relative;
}

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

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

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
  margin-left: 0.25rem;
}

.factory-stats-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: none;
}

@media (min-width: 640px) {
  .factory-stats-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.factory-stat {
  text-align: center;
}

.factory-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.factory-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.factory-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.factory-desc {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.capabilities-grid {
  display: grid;
  gap: 1rem;
}

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

.capability-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.factory-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--card);
}

.testimonials-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

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

.testimonials-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.nav-btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  transition: all 0.2s;
}

.nav-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary-foreground);
}

.nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.testimonials-counter {
  margin-left: 1rem;
  color: var(--muted-foreground);
}

.testimonial-wrapper {
  position: relative;
}

.testimonial-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2.5rem;
  }
}

.quote-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(201, 169, 98, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.quote-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

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

.author-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-foreground);
}

.author-name {
  font-weight: 600;
}

.author-position {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.author-company {
  font-size: 0.875rem;
  color: var(--primary);
}

.testimonial-decoration {
  position: absolute;
  z-index: -1;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 1rem;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 6rem 0;
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50rem;
  height: 50rem;
  background-color: rgba(201, 169, 98, 0.05);
  border-radius: 50%;
  filter: blur(48px);
}

.cta-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 4rem;
  }
}

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

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

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

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
}

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

.cta-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.cta-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1rem;
}

.cta-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.cta-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.cta-form-wrapper {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.cta-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

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

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.875rem;
}

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

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--foreground);
  font-size: 0.875rem;
  resize: none;
}

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

.form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}

.cta-alternative {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

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

.cta-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.cta-links a:hover {
  color: var(--primary);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 4rem 0;
}

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

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

.footer-company {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-company {
    grid-column: span 4;
  }
}

@media (min-width: 1024px) {
  .footer-company {
    grid-column: span 1;
  }
}

.footer-company .logo {
  margin-bottom: 1.5rem;
}

.footer-about {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

.footer-contact a,
.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-contact .icon {
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-links h3 {
  font-weight: 600;
  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(--primary);
}

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

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

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

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

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

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

.social-links svg {
  width: 1rem;
  height: 1rem;
}
