/* Base styles */
:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --teal-950: #042f2e;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  line-height: 1.5;
  color: var(--gray-900);
  background-color: #fff;
}

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

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

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

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

.btn-primary {
  background-color: var(--teal-500);
  color: white;
  border: none;
}

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

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
}

.btn-ghost:hover {
  background-color: var(--gray-100);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

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

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

.logo-icon {
  color: var(--teal-500);
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--teal-500);
}

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

/* Mobile menu */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  z-index: 100;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 2rem 1rem;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-list {
  margin-top: 3rem;
  list-style: none;
}

.mobile-nav-item {
  margin-bottom: 1rem;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Update banner */
.update-banner {
  background-color: var(--teal-500);
  color: white;
  padding: 0.5rem 0;
  overflow: hidden;
  position: relative;
}

.update-banner-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.update-banner-item {
  display: flex;
  align-items: center;
  margin: 0 2rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.update-banner-icon {
  margin-right: 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Hero section */
.hero {
  background: linear-gradient(to bottom, var(--gray-900), var(--gray-800));
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  gap: 2rem;
}

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

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

.hero-description {
  color: var(--gray-300);
  max-width: 600px;
}

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

.hero-search {
  position: relative;
  max-width: 400px;
  margin-top: 1.5rem;
}

.hero-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
}

.hero-search-input {
  width: 100%;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid var(--gray-700);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero-search-input::placeholder {
  color: var(--gray-400);
}

.hero-preview {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: black;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-800);
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-800);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.hero-preview-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-preview-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.hero-preview-dot-red {
  background-color: #ef4444;
}

.hero-preview-dot-yellow {
  background-color: #f59e0b;
}

.hero-preview-dot-green {
  background-color: #10b981;
}

.hero-preview-title {
  font-size: 0.75rem;
  color: var(--gray-400);
}

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

.hero-preview-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-preview-block {
  height: 1rem;
  background-color: var(--gray-800);
  border-radius: 0.25rem;
}

.hero-preview-block-sm {
  width: 30%;
}

.hero-preview-block-md {
  width: 50%;
}

.hero-preview-block-lg {
  width: 70%;
}

.hero-preview-block-full {
  width: 100%;
}

.hero-preview-divider {
  height: 1px;
  background-color: var(--gray-800);
  margin: 0.5rem 0;
}

.hero-preview-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-preview-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--gray-800);
}

.hero-preview-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-preview-action {
  margin-left: auto;
  width: 4rem;
  height: 1.5rem;
  background-color: rgba(20, 184, 166, 0.3);
  border-radius: 0.25rem;
}

.hero-preview-button {
  width: 6rem;
  height: 2rem;
  background-color: var(--teal-500);
  border-radius: 0.25rem;
  margin-left: auto;
  margin-top: 1rem;
}

/* How it works section */
.how-it-works {
  background-color: var(--gray-50);
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background-color: rgba(20, 184, 166, 0.1);
  color: var(--teal-500);
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

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

.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-500);
}

.steps {
  display: grid;
  gap: 2rem;
}

.step-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
}

.step-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--teal-50);
  margin: 0 auto 1rem;
}

.step-icon {
  color: var(--teal-500);
  font-size: 1.5rem;
}

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

.step-description {
  color: var(--gray-500);
}

/* Value proposition section */
.value-proposition {
  padding: 4rem 0;
}

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

.feature-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.feature-icon {
  color: var(--teal-500);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--gray-500);
}

/* Trusted by section */
.trusted-by {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trusted-by-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.trusted-by-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.trusted-by-logo {
  height: 3rem;
  opacity: 0.7;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

.trusted-by-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Featured categories section */
.featured-categories {
  padding: 4rem 0;
}

.categories {
  display: grid;
  gap: 1.5rem;
}

.category-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.2s ease;
}

.category-card:hover {
  border-color: var(--teal-500);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-icon {
  color: var(--teal-500);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.category-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.category-description {
  color: var(--gray-500);
  margin-bottom: 1rem;
}

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

.category-link-icon {
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.category-card:hover .category-link-icon {
  transform: translateX(2px);
}

/* Region selector section */
.region-selector {
  background-color: var(--gray-50);
  padding: 4rem 0;
}

.region-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.region-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.region-tab:hover {
  background-color: var(--gray-100);
}

.region-tab.active {
  background-color: var(--gray-200);
}

.region-tab-flag {
  width: 1.75rem;
  height: 1.25rem;
  object-fit: cover;
  border-radius: 0.125rem;
}

.region-content {
  display: none;
}

.region-content.active {
  display: block;
}

.region-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.region-image {
  height: 16rem;
  width: 100%;
  object-fit: cover;
}

.region-details {
  padding: 2rem;
}

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

.region-flag {
  width: 3rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 0.25rem;
}

.region-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.region-description {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.region-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.region-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-500);
}

.region-stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.region-popular {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.region-popular-dataset {
  font-size: 1rem;
  font-weight: 600;
}

/* Sample preview section */
.sample-preview {
  padding: 4rem 0;
}

.sample-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}

.sample-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.sample-tab:hover {
  color: var(--teal-500);
}

.sample-tab.active {
  color: var(--teal-500);
  border-bottom-color: var(--teal-500);
}

.sample-content {
  display: none;
}

.sample-content.active {
  display: block;
}

.sample-card {
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.sample-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

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

.sample-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.sample-badge {
  background-color: var(--teal-500);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.sample-table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.sample-table {
  width: 100%;
  border-collapse: collapse;
}

.sample-table th,
.sample-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.sample-table th {
  font-size: 0.875rem;
  font-weight: 500;
}

.sample-table tr:last-child td {
  border-bottom: none;
}

.sample-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sample-dropdown {
  position: relative;
}

.sample-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin-top: 0.25rem;
  background-color: white;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: none;
}

.sample-dropdown.active .sample-dropdown-menu {
  display: block;
}

.sample-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}

.sample-dropdown-item:hover {
  background-color: var(--gray-100);
}

.sample-pricing {
  background-color: var(--gray-50);
  border-radius: 0.375rem;
  padding: 1rem;
}

.sample-pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.sample-pricing-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.sample-pricing-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-600);
}

.sample-pricing-note {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Business stats section */
.business-stats {
  background-color: var(--gray-50);
  padding: 4rem 0;
}

.stats {
  display: grid;
  gap: 1.5rem;
}

.stat-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
}

.stat-icon {
  color: var(--teal-500);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

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

/* Testimonials section */
.testimonials {
  background-color: black;
  color: white;
  padding: 4rem 0;
}

.testimonials .section-badge {
  background-color: rgba(20, 184, 166, 0.2);
  color: var(--teal-400);
}

.testimonials .section-description {
  color: var(--gray-400);
}

.testimonial-card {
  background-color: var(--gray-900);
  border-radius: 0.5rem;
  padding: 2rem;
  position: relative;
}

.testimonial-quote {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--teal-500);
  opacity: 0.5;
  font-size: 3rem;
}

.testimonial-slider {
  position: relative;
  height: 16rem;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
}

.testimonial-text {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 600;
}

.testimonial-title {
  color: var(--teal-400);
}

.testimonial-company {
  color: var(--gray-400);
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-indicator.active {
  width: 1rem;
  border-radius: 0.25rem;
  background-color: var(--teal-500);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--gray-700);
  color: var(--gray-300);
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-control:hover {
  background-color: var(--gray-800);
  color: white;
}

/* Call to action section */
.call-to-action {
  background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800));
  color: white;
  padding: 4rem 0;
}

.cta-container {
  display: grid;
  gap: 2rem;
}

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

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

.cta-description {
  color: var(--gray-300);
  max-width: 600px;
}

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

.cta-form {
  background-color: var(--gray-950);
  border: 1px solid var(--gray-800);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

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

.cta-form-description {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.cta-form-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background-color: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 0.375rem;
  color: white;
  margin-bottom: 0.5rem;
}

.cta-form-input::placeholder {
  color: var(--gray-500);
}

.cta-form-button {
  width: 100%;
  background-color: var(--teal-500);
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cta-form-button:hover {
  background-color: var(--teal-600);
}

/* Footer */
.footer {
  background-color: var(--gray-950);
  color: var(--gray-200);
  padding-top: 3rem;
}

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

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

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

.footer-description {
  color: var(--gray-400);
}

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

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--gray-400);
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  color: var(--teal-400);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--gray-400);
  transition: color 0.2s ease;
}

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

.footer-subscribe {
  display: flex;
  gap: 0.5rem;
}

.footer-subscribe-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background-color: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 0.375rem;
  color: white;
}

.footer-subscribe-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--teal-500);
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-subscribe-button:hover {
  background-color: var(--teal-600);
}

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

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

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

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

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

/* Responsive styles */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

  .cta-actions {
    flex-direction: row;
  }
}

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

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .nav {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .hero {
    padding: 6rem 0;
  }

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

  .hero-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

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

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

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

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

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