/* WAPIAR - WhatsApp Marketing Platform Styles */

/* ===== CSS Variables ===== */
:root {
  --primary: 158, 64%, 42%;
  --primary-foreground: 0, 0%, 100%;
  --background: 210, 20%, 98%;
  --foreground: 220, 15%, 15%;
  --card: 0, 0%, 100%;
  --card-foreground: 220, 15%, 15%;
  --muted: 210, 15%, 93%;
  --muted-foreground: 215, 15%, 45%;
  --accent: 210, 20%, 96%;
  --accent-foreground: 220, 15%, 15%;
  --border: 214, 20%, 88%;
  --destructive: 0, 84%, 60%;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: hsl(var(--background));
  color: #000f09;
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

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

.text-primary { color: hsl(var(--primary)); }
.text-foreground { color: #000f09; }
.text-muted { color: hsl(var(--muted-foreground)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-muted { background-color: hsl(var(--muted)); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.shadow-soft { box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04); }
.shadow-card { box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12), 0 0 20px -5px rgba(0, 0, 0, 0.05); }
.shadow-glow { box-shadow: 0 0 40px hsl(var(--primary) / 0.3); }

/* ===== Gradients ===== */
.gradient-hero {
  background: #18a36f;
}

.gradient-subtle {
  background: linear-gradient(180deg, hsl(var(--background)) 0%, hsl(var(--muted)) 100%);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #18a36f;
  color: white;
  box-shadow: 0 4px 15px hsl(var(--primary) / 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsl(var(--primary) / 0.4);
}

.btn-outline {
  background: transparent;
  color: #000f09;
  border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
  background: hsl(var(--accent));
}

.btn-ghost {
  background: transparent;
  color: #000f09;
}

.btn-ghost:hover {
  background: hsl(var(--accent));
}

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

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000f09;
  transition: color 0.2s;
}

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

.nav-dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000f09;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.dropdown-btn:hover {
  color: hsl(var(--primary));
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  display: none;
  animation: fadeUp 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: hsl(var(--accent));
}

.dropdown-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
}

.dropdown-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #000f09;
}

.dropdown-content p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-menu-btn:hover {
  background: hsl(var(--accent));
}

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

.mobile-menu {
  display: none;
  padding: 1.5rem 0;
  border-top: 1px solid hsl(var(--border));
  animation: fadeUp 0.2s ease;
}

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

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: #000f09;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.mobile-nav-link:hover {
  background: hsl(var(--accent));
}

.mobile-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

.mobile-actions .btn {
  flex: 1;
}

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

/* ===== Hero Section ===== */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #000f09;
}

.hero-desc {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}

.hero-image {
  position: relative;
  max-width: 64rem;
  margin: 3rem auto 0;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #18a36f;
  opacity: 0.2;
  filter: blur(60px);
  border-radius: 1.5rem;
  transform: scale(0.95);
}

.hero-image img {
  position: relative;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  animation: float 6s ease-in-out infinite;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 56rem;
  margin: 4rem auto 0;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

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

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
  .hero-cta { flex-direction: row; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
  .stat-value { font-size: 2.5rem; }
}

/* ===== Section Styles ===== */
.section {
  padding: 5rem 0;
}

.section-muted {
  background: hsl(var(--muted) / 0.3);
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: #000f09;
}

.section-desc {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

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

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

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: hsl(var(--card));
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon {
  background: hsl(var(--primary) / 0.2);
}

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

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000f09;
}

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

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

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

/* ===== Feature Section (Alternating) ===== */
.feature-section {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-list-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-list-icon::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
}

.feature-image {
  position: relative;
}

.feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #18a36f;
  opacity: 0.1;
  filter: blur(60px);
  border-radius: 1.5rem;
  transform: scale(0.9);
}

.feature-image img {
  position: relative;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .feature-section { 
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }
  .feature-section.reverse .feature-content {
    order: 2;
  }
}

/* ===== Comparison Table ===== */
.comparison-table {
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 48rem;
  margin: 0 auto;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: hsl(var(--muted) / 0.5);
  border-bottom: 1px solid hsl(var(--border));
}

.comparison-header div {
  padding: 1rem;
  font-weight: 600;
}

.comparison-header div:nth-child(2) {
  text-align: center;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.05);
  border-left: 1px solid hsl(var(--border));
  border-right: 1px solid hsl(var(--border));
}

.comparison-header div:nth-child(3) {
  text-align: center;
  color: hsl(var(--muted-foreground));
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid hsl(var(--border));
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row div {
  padding: 1rem;
}

.comparison-row div:nth-child(2) {
  display: flex;
  justify-content: center;
  border-left: 1px solid hsl(var(--border));
  border-right: 1px solid hsl(var(--border));
  background: hsl(var(--primary) / 0.05);
}

.comparison-row div:nth-child(3) {
  display: flex;
  justify-content: center;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon.yes {
  background: hsl(var(--primary) / 0.2);
  color: hsl(var(--primary));
}

.check-icon.no {
  background: hsl(var(--destructive) / 0.2);
  color: hsl(var(--destructive));
}

.check-icon.muted {
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.testimonial-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  fill: hsl(var(--primary));
}

.testimonial-content {
  color: #000f09;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: hsl(var(--primary));
}

.testimonial-name {
  font-weight: 600;
  color: #000f09;
}

.testimonial-role {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

.pricing-card.popular {
  border-color: hsl(var(--primary));
  box-shadow: 0 0 40px hsl(var(--primary) / 0.3);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: hsl(var(--primary));
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.pricing-amount {
  font-size: 2.25rem;
  font-weight: 700;
}

.pricing-period {
  color: hsl(var(--muted-foreground));
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.pricing-check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-check svg {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(var(--primary));
}

.pricing-card .btn {
  width: 100%;
}

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

/* ===== FAQ ===== */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: hsl(var(--card));
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border));
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: #000f09;
  transition: background 0.2s;
}

.faq-question:hover {
  background: hsl(var(--accent) / 0.5);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1rem;
  color: hsl(var(--muted-foreground));
  display: none;
  animation: fadeUp 0.2s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== CTA Section ===== */
.cta-section {
  max-width: 56rem;
  margin: 0 auto;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.cta-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: white;
  border-radius: 9999px;
  transform: translate(-50%, -50%);
}

.cta-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: white;
  border-radius: 9999px;
  transform: translate(33%, 33%);
}

.cta-content {
  position: relative;
}

.cta-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: hsl(var(--background) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cta-icon svg {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
}

.cta-title {
  font-size: 1.875rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto 2rem;
}

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

.cta-buttons .btn-white {
  background: white;
  color: hsl(var(--primary));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-outline-white {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cta-buttons .btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .cta-section { padding: 4rem; }
  .cta-title { font-size: 2.25rem; }
  .cta-buttons { flex-direction: row; }
}

/* ===== Footer ===== */
.footer {
  background: #000f09;
  color: hsl(var(--background));
  padding: 5rem 0;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: hsl(var(--primary));
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-links h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  margin-top: 0.25rem;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

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

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

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

.contact-form {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
}

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

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--background));
  color: #000f09;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

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

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

/* ===== Contact Methods ===== */
.contact-methods {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.contact-method {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  text-align: center;
  transition: box-shadow 0.3s;
}

.contact-method:hover {
  box-shadow: var(--shadow-card);
}

.contact-method-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

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

.contact-method h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-method p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: hsl(var(--primary));
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

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

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

/* ===== How It Works ===== */
.how-it-works {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

.how-step {
  text-align: center;
}

.how-step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.how-step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.how-step p {
  color: hsl(var(--muted-foreground));
}

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

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.3s ease;
  z-index: 100;
}

.toast.success {
  border-left: 4px solid hsl(var(--primary));
}

.toast.hidden {
  display: none;
}
