/* Base Styles */
:root {
  --primary: #0070f3;
  --primary-dark: #0060df;
  --primary-light: #3694ff;
  --secondary: #f5f5f7;
  --foreground: #111827;
  --background: #ffffff;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --radius: 0.5rem;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.5;
  font-size: 16px;
}

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

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

ul {
  list-style: none;
}

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

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

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

.mt-large {
  margin-top: 4rem;
}

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

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

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

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

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

.btn-secondary:hover {
  background-color: #e5e5e7;
}

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

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

.btn-outline-light {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

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

.btn-full {
  width: 100%;
}

.btn-icon {
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
}

/* Section Styles */
section {
  padding: 3rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border);
  margin-bottom: 0.5rem;
}

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

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

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

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.navbar-content {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.navbar-nav {
  display: none;
  gap: 1.5rem;
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.navbar-right {
  display: none;
  align-items: center;
  gap: 1rem;
}

.navbar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: transparent;
  border: none;
  cursor: pointer;
}

.navbar-toggle-icon {
  position: relative;
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--foreground);
}

.navbar-toggle-icon::before,
.navbar-toggle-icon::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 0.125rem;
  background-color: var(--foreground);
  transition: all 0.2s ease;
}

.navbar-toggle-icon::before {
  top: -0.5rem;
}

.navbar-toggle-icon::after {
  bottom: -0.5rem;
}

.navbar-mobile {
  display: none;
  padding: 1rem 0;
}

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

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

.navbar-mobile-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar-mobile-link:hover {
  color: var(--primary);
}

.navbar-mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

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

  .navbar-right {
    display: flex;
  }

  .navbar-toggle {
    display: none;
  }

  .navbar-mobile {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, var(--background), var(--muted));
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-feature-check {
  font-weight: 500;
}

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

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-video {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--background);
  box-shadow: var(--shadow-xl);
}

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

.hero-play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-play-button:hover {
  background-color: white;
  transform: scale(1.1);
}

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

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

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

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

/* Problem Solution Section */
.problem-solution {
  background-color: var(--background);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.problem-icon {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(0, 112, 243, 0.1);
  color: var(--primary);
}

.problem-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 700;
}

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

.solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

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

.solution-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.solution-check {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.solution-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

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

.solution-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}

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

  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* How It Works Section */
.how-it-works {
  background-color: var(--background);
}

.steps-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.step-icon-container {
  position: relative;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(0, 112, 243, 0.1);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  display: flex;
  height: 2rem;
  width: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--primary);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
}

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

.demo-container {
  margin-top: 4rem;
}

.demo-video {
  position: relative;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.demo-image {
  width: 100%;
  display: block;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
}

.demo-content {
  padding: 1.5rem;
  color: white;
}

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

.demo-description {
  margin-bottom: 1rem;
  max-width: 32rem;
}

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

/* Features Section */
.features {
  background-color: var(--muted);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-icon {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background-color: rgba(0, 112, 243, 0.1);
  color: var(--primary);
}

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

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
}

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

.features-dashboard {
  margin-top: 4rem;
}

.dashboard-image {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}

.dashboard-caption {
  text-align: center;
  color: var(--muted-foreground);
  margin-top: 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);
  }
}

/* Use Cases Section */
.use-cases {
  background-color: var(--muted);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.use-case-card {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--background);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.use-case-image {
  position: relative;
  height: 12rem;
}

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

.use-case-content {
  padding: 1.5rem;
}

.use-case-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.use-case-description {
  color: var(--muted-foreground);
}

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

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

/* Technology Section */
.technology {
  background-color: var(--background);
}

.technology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

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

.technology-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.technology-title {
  font-size: 1.5rem;
  font-weight: 700;
}

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

.technology-visual {
  position: relative;
}

.technology-image-container {
  position: relative;
}

.technology-image {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
}

.technology-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.technology-badge-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.technology-badge-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.technology-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.technology-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--background);
}

.technology-card-icon {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: rgba(0, 112, 243, 0.1);
  color: var(--primary);
}

.technology-card-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.technology-card-description {
  color: var(--muted-foreground);
}

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

  .technology-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Testimonials Section */
.testimonials {
  background-color: var(--background);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

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

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

.testimonial-avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 9999px;
  object-fit: cover;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
}

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

.testimonial-rating {
  display: flex;
  margin: 0.5rem 0 1rem;
}

.star-icon {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

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

.clients-section {
  text-align: center;
  margin-top: 4rem;
}

.clients-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.client-logo {
  height: 2.5rem;
  object-fit: contain;
}

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

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

/* FAQ Section */
.faq {
  background-color: var(--muted);
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion {
  border-radius: var(--radius);
  overflow: hidden;
}

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

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.accordion-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.accordion-button[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.25rem 1.25rem;
  display: none;
}

.accordion-button[aria-expanded="true"] + .accordion-content {
  display: block;
}

.accordion-content p {
  color: var(--muted-foreground);
}

/* Blog Preview Section */
.blog-preview {
  background-color: var(--background);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--background);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-image {
  position: relative;
  height: 12rem;
}

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

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.blog-date,
.blog-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-icon {
  width: 1rem;
  height: 1rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  flex: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-link-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

.blog-more {
  text-align: center;
  margin-top: 2rem;
}

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

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

/* Pricing Section */
.pricing {
  background-color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.pricing-card {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--background);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pricing-card-popular {
  border-color: var(--primary);
  position: relative;
}

.pricing-popular-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--background);
  color: var(--primary);
  border-radius: 9999px;
}

.pricing-header {
  padding: 1.5rem;
  text-align: center;
}

.pricing-header-popular {
  background-color: var(--primary);
  color: white;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 0.5rem 0;
}

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

.period {
  margin-left: 0.25rem;
  color: var(--muted-foreground);
}

.pricing-header-popular .period {
  color: rgba(255, 255, 255, 0.8);
}

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

.pricing-header-popular .pricing-description {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.pricing-footer {
  padding: 1.5rem;
}

.pricing-note {
  text-align: center;
  color: var(--muted-foreground);
}

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

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.cta-feature-check {
  font-weight: 500;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

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

/* Footer */
.footer {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  color: var(--muted-foreground);
  max-width: 20rem;
}

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

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

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

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

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

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

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

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

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

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Icons */
.icon {
  width: 1.5rem;
  height: 1.5rem;
}

