:root {
  --primary-color: #8B5CF6; /* Violet-500 */
  --primary-hover: #7C3AED; /* Violet-600 */
  --secondary-color: #10B981; /* Emerald-500 */
  --bg-darker: #0F172A; /* Slate-900 */
  --bg-dark: #1E293B; /* Slate-800 */
  --border-color: #334155; /* Slate-700 */
  --text-light: #F8FAFC; /* Slate-50 */
  --text-muted: #94A3B8; /* Slate-400 */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.text-muted {
  color: var(--text-muted);
}

.text-gradient {
  color: var(--primary-color);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  background-color: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem; /* rounded-xl */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white !important;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background-color: var(--bg-dark);
  border-color: var(--text-muted);
}

/* Hero Section */
.hero {
  padding: 10rem 0 5rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-image {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.hero-image img {
  width: 100%;
  display: block;
}

/* Features & Sections */
.features, .how-it-works, .pricing {
  padding: 5rem 0;
  background-color: var(--bg-darker);
}

.how-it-works {
  background-color: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.feature-grid, .steps-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Cards */
.feature-card, .step-card, .pricing-card {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.how-it-works .step-card {
  background-color: var(--bg-darker);
}

.feature-card:hover, .pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--text-muted);
}

.feature-icon {
  width: 100%;
  height: 180px;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3, .step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Steps Specific */
.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

/* Pricing Specific */
.pricing-card.popular {
  border-color: var(--primary-color);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  margin: 1rem 0;
  color: var(--text-light);
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.features-list li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.features-list li i {
  color: var(--primary-color);
  margin-top: 4px;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--text-light);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(30, 41, 59, 0.98); /* Slate-800 */
  border-top: 1px solid var(--border-color);
  padding: 1.25rem 0;
  z-index: 1000;
  transition: bottom 0.4s ease;
  box-shadow: var(--shadow-lg);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

/* Legal Pages */
.legal-page {
  padding: 8rem 0 4rem;
}

.legal-content {
  background-color: var(--bg-dark);
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
}

.legal-content h1 {
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
}

.legal-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.legal-content p, .legal-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Hero Mockups Display */
.hero-mockups {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
}

.mockup {
  width: 28%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.mockup-center {
  width: 34%;
  z-index: 10;
  transform: translateY(-2rem);
}

.mockup-left {
  transform: translateY(1rem) translateX(1rem) rotate(-3deg);
  opacity: 0.9;
}

.mockup-right {
  transform: translateY(1rem) translateX(-1rem) rotate(3deg);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-mockups {
    flex-direction: column;
    gap: 2rem;
  }
  .mockup, .mockup-center {
    width: 80%;
    transform: none;
    opacity: 1;
  }
}

