/* CSS Variables for Theming */
:root {
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  --primary: 221 83% 53%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96%;
  --secondary-foreground: 222 47% 11%;
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;
  --accent: 210 40% 96%;
  --accent-foreground: 222 47% 11%;
  --border: 214 32% 91%;
  --ring: 221 83% 53%;
  --radius: 0.5rem;
}

.dark {
  --background: 222 47% 11%;
  --foreground: 210 40% 98%;
  --card: 222 47% 15%;
  --card-foreground: 210 40% 98%;
  --primary: 217 91% 60%;
  --primary-foreground: 222 47% 11%;
  --secondary: 217 33% 17%;
  --secondary-foreground: 210 40% 98%;
  --muted: 217 33% 17%;
  --muted-foreground: 215 20% 65%;
  --accent: 217 33% 17%;
  --accent-foreground: 210 40% 98%;
  --border: 217 33% 25%;
  --ring: 217 91% 60%;
}

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

html {
  scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

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

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

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

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: hsl(var(--foreground));
  border-color: hsl(var(--border));
}

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

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid hsl(var(--border));
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: hsl(var(--primary));
}

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

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

.nav-link {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

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

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

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.theme-toggle:hover {
  background: hsl(var(--accent));
}

.theme-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.sun-icon {
  display: none;
}

.dark .sun-icon {
  display: block;
}

.moon-icon {
  display: block;
}

.dark .moon-icon {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: transparent;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  cursor: pointer;
}

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

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

/* Hero */
.hero {
  padding: 4rem 0 6rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0 8rem;
  }
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

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

.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(280 80% 60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 540px;
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.trust-item svg {
  width: 1rem;
  height: 1rem;
  color: hsl(142 76% 36%);
}

/* Dashboard Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.dashboard-mockup {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 560px;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: hsl(var(--muted));
  border-bottom: 1px solid hsl(var(--border));
}

.mockup-dots {
  display: flex;
  gap: 0.375rem;
}

.mockup-dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: hsl(var(--muted-foreground) / 0.3);
}

.mockup-dots span:first-child {
  background: #ef4444;
}

.mockup-dots span:nth-child(2) {
  background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
  background: #22c55e;
}

.mockup-title {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.mockup-content {
  display: flex;
  min-height: 280px;
}

.mockup-sidebar {
  width: 3.5rem;
  background: hsl(var(--muted) / 0.5);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-item {
  height: 2rem;
  background: hsl(var(--muted-foreground) / 0.1);
  border-radius: 0.375rem;
}

.sidebar-item.active {
  background: hsl(var(--primary));
}

.mockup-main {
  flex: 1;
  padding: 1rem;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.stat-card {
  background: hsl(var(--muted));
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.625rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

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

.stat-value.alert {
  color: #ef4444;
}

.chart-placeholder {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 120px;
  background: hsl(var(--muted));
  border-radius: 0.5rem;
  padding: 1rem;
}

.chart-bar {
  width: 12%;
  background: hsl(var(--primary));
  border-radius: 0.25rem 0.25rem 0 0;
  opacity: 0.8;
}

/* Stats Bar */
.stats-bar {
  background: hsl(var(--muted));
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
}

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

/* Section Styles */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

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

.section-description {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
}

/* Features */
.features {
  padding: 5rem 0;
}

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

@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-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

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

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

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.feature-list {
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.375rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.375rem;
  height: 0.375rem;
  background: hsl(var(--primary));
  border-radius: 50%;
}

/* Benefits */
.benefits {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.3);
}

.benefit-row {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.benefit-row:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .benefit-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .benefit-row.reverse .benefit-content {
    order: 2;
  }
}

.benefit-badge {
  display: inline-flex;
  padding: 0.375rem 0.75rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.benefit-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.benefit-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

.benefit-list {
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.benefit-list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(142 76% 36%);
  flex-shrink: 0;
}

/* Visual Cards */
.benefit-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.visual-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.visual-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: hsl(var(--primary) / 0.1);
  border-radius: var(--radius);
}

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

.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.visual-stat {
  background: hsl(var(--muted));
  padding: 0.75rem;
  border-radius: var(--radius);
  text-align: center;
}

.visual-stat .label {
  display: block;
  font-size: 0.625rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

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

.visual-list {
  background: hsl(var(--muted));
  padding: 0.75rem;
  border-radius: var(--radius);
}

.list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.list-item:last-child {
  margin-bottom: 0;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.dot.green {
  background: #22c55e;
}

.bar {
  flex: 1;
  height: 0.375rem;
  background: hsl(var(--muted-foreground) / 0.1);
  border-radius: 999px;
}

/* Workflow Steps */
.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
}

.step-label {
  flex: 1;
  background: hsl(var(--muted));
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

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

/* Security Visual */
.security-status {
  text-align: center;
  margin-bottom: 1.5rem;
}

.shield-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: hsl(142 76% 36% / 0.1);
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.shield-icon svg {
  width: 2rem;
  height: 2rem;
  color: #22c55e;
}

.status-text {
  font-size: 0.875rem;
  font-weight: 500;
}

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

.security-item {
  background: hsl(var(--muted));
  padding: 0.75rem;
  border-radius: var(--radius);
  text-align: center;
}

.security-item .label {
  display: block;
  font-size: 0.625rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.security-item .status {
  font-size: 0.75rem;
  font-weight: 600;
  color: #22c55e;
}

/* Integrations */
.integrations {
  padding: 5rem 0;
}

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

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

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

.integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}

.integration-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.integration-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--muted));
  border-radius: var(--radius);
  font-size: 0.625rem;
  font-weight: 700;
  color: hsl(var(--muted-foreground));
}

.integration-name {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-align: center;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.3);
}

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

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

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

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

.testimonial-stars svg {
  width: 1rem;
  height: 1rem;
  color: #f59e0b;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

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

.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
}

.author-title {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* Pricing CTA */
.pricing-cta {
  padding: 5rem 0;
}

.cta-card {
  display: grid;
  gap: 3rem;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(250 80% 50%));
  border-radius: 1rem;
  padding: 3rem 2rem;
  color: white;
}

@media (min-width: 1024px) {
  .cta-card {
    grid-template-columns: 1.5fr 1fr;
    padding: 4rem;
    align-items: center;
  }
}

.cta-badge {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

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

.cta-description {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin-bottom: 2rem;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.cta-features svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

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

.cta-buttons .btn-primary {
  background: white;
  color: hsl(var(--primary));
}

.cta-buttons .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

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

.cta-visual {
  display: flex;
  justify-content: center;
}

.price-display {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.price-label {
  display: block;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.price-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.period {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 1.5rem;
}

.price-note {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* FAQ */
.faq {
  padding: 5rem 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid hsl(var(--border));
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  color: inherit;
}

.faq-question:hover {
  color: hsl(var(--primary));
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

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

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
}

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

.faq-answer p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

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

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

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

.footer-tagline {
  color: hsl(var(--muted-foreground));
  margin: 1rem 0 1.5rem;
}

.newsletter-form h4 {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 0.625rem 0.875rem;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: inherit;
}

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

.newsletter-note {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

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

.footer-column h4 {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.625rem;
}

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

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

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

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

.footer-legal a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}

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

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 1000;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-message {
  font-size: 0.875rem;
}
