/* 🎨 VEED.IO INSPIRED DESIGN SYSTEM */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors - Matching Veed.io palette */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #a5b4fc;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  
  /* Typography */
  --font-family: SwissNow, ui-sans-serif, system-ui, -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-size-7xl: 4.5rem;
  --font-size-8xl: 6rem;
  --font-size-9xl: 8rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Border radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* ===== NAVIGATION WITH GLASSMORPHISM ===== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: calc(100% - 40px);
  max-width: 1200px;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  height: auto;
  min-height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-logo {
  height: 70px;
  max-width: 220px;
  width: auto;
  transition: all 0.3s ease;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.nav-brand:hover .nav-logo {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4));
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-8);
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0.8;
}

.nav-menu a:hover {
  color: var(--primary);
  opacity: 1;
  text-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Navigation Dropdown Menus */
.nav-item {
  position: relative;
}

.nav-item.has-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.nav-item.has-dropdown:hover > a::after,
.nav-item.has-dropdown.hover > a::after,
.nav-item.has-dropdown.active > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 1) inset;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.hover .dropdown-menu,
.nav-item.has-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-bottom: 2px;
}

.dropdown-menu a:last-child {
  margin-bottom: 0;
}

.dropdown-menu a:hover {
  background: rgba(99, 102, 241, 0.08);
  transform: translateX(4px);
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 1px;
}

.dropdown-item-desc {
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.8;
  line-height: 1.3;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

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

@media (max-width: 480px) {
  .nav-logo {
    height: 60px;
  }
  
  .nav-container {
    min-height: 65px;
    padding: 6px 16px;
  }
  
  .footer-logo-img {
    height: 32px;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  border: none;
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.25);
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 100%);
  box-shadow: 0 20px 25px -5px rgba(124, 58, 237, 0.35);
  transform: translateY(-2px);
}

.btn-primary::after {
  content: '→';
  font-size: 1.2rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-secondary {
  background: white;
  color: #7c3aed;
  border: 2px solid #e5e7eb;
  box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: #7c3aed;
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.15);
}

.btn-secondary::after {
  content: '→';
  font-size: 1.2rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.btn-secondary:hover::after {
  transform: translateX(4px);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: calc(140px + var(--space-20)) 0 var(--space-24);
  text-align: center;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-section {
  padding: calc(100px + var(--space-8)) 0 var(--space-8);
  text-align: center;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, #6366f1 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: var(--font-size-3xl);
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--font-size-4xl);
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--space-20) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, #6366f1 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--font-size-4xl);
  }
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  font-size: var(--font-size-2xl);
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

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

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

/* ===== STATS ===== */
.stats {
  background: var(--gray-50);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.stat-card {
  text-align: center;
  padding: var(--space-6);
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stat-number {
    font-size: var(--font-size-4xl);
  }
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: all 0.2s ease;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.pricing-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.pricing-price {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.pricing-description {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
}

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

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

/* ===== PRICING PAGE ===== */
.pricing-card-section {
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-card {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(79, 70, 229, 0.1) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  max-width: 900px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.pricing-header {
  text-align: left;
  margin-bottom: var(--space-8);
}

.pricing-plan-name {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.pricing-plan-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin: 0;
}

.pricing-price-section {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.price-display {
  display: flex;
  align-items: baseline;
}

.price-currency {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--text-primary);
}

.price-amount {
  font-size: var(--font-size-8xl);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-left: var(--space-2);
}

.price-crossed {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: var(--font-size-2xl);
  font-weight: 600;
}

.pricing-button-section {
  margin-bottom: var(--space-10);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-xl);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.pricing-note {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  margin: 0;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.features-column h4 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  line-height: 1.5;
}

.testimonials-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-4);
}

.testimonial-avatars {
  display: flex;
  margin-right: var(--space-4);
}

.testimonial-avatars img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-avatars img:first-child {
  margin-left: 0;
}

.testimonial-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stars {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-1);
}

.testimonial-rating span {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-secondary);
}

/* Integrations Section */
.integrations-section {
  padding: var(--space-20) 0;
  background: var(--white);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  background: white;
}

.integration-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.integration-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.integration-icon img,
.integration-icon svg {
  width: 40px;
  height: 40px;
}

.integration-item span {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--text-primary);
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
  .pricing-features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .price-amount {
    font-size: var(--font-size-6xl);
  }
  
  .price-currency {
    font-size: var(--font-size-3xl);
  }
  
  .testimonials-row {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .integrations-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-4);
  }
  
  .featured-card {
    padding: var(--space-6);
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-50);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--border);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  text-align: center;
}

/* ===== VEED.IO-INSPIRED FOOTER ===== */
.footer-veed {
  background: #2d2d2d;
  color: #ffffff;
  padding: var(--space-16) 0 var(--space-8);
  margin-top: var(--space-24);
}

.footer-veed .container {
  max-width: 1400px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-6);
}

.language-selector {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #ffffff;
  padding: 8px 12px;
  font-size: var(--font-size-sm);
  cursor: pointer;
}

.language-selector:focus {
  outline: none;
  border-color: var(--primary);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column-title {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-2);
  transition: color 0.2s ease;
  line-height: 1.5;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-section {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  max-width: 300px;
  margin: 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-sm);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
}

.manage-cookies {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  font-size: var(--font-size-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.manage-cookies:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: var(--space-6);
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  
  .footer-brand-section {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

/* ===== ENHANCED TYPOGRAPHY ===== */
/* Veed.io-style emphasis with asterisks */
*[data-emphasis],
h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

/* Add asterisks around emphasized text */
h1:has(em), h2:has(em) {
  position: relative;
}

h1 em::before, h1 em::after,
h2 em::before, h2 em::after {
  content: '*';
  color: var(--primary);
  font-weight: 400;
  opacity: 0.7;
}

h1 em::before, h2 em::before {
  margin-right: 0.1em;
}

h1 em::after, h2 em::after {
  margin-left: 0.1em;
}

/* Feature list styling */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  padding: var(--space-2) 0;
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  display: flex;
  align-items: center;
}

ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
  margin-right: var(--space-3);
  flex-shrink: 0;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-gradient {
  background: linear-gradient(135deg, #6366f1 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  padding: var(--space-2);
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 1) inset;
  margin: 0 8px;
}

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

.mobile-menu-nav {
  padding: var(--space-4) var(--space-6);
}

.mobile-menu-nav a {
  display: block;
  padding: var(--space-3) 0;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  opacity: 0.8;
}

.mobile-menu-nav a:hover {
  color: var(--primary);
  opacity: 1;
  text-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.mobile-menu-actions {
  padding: var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for feature cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Mobile menu animation */
.mobile-menu {
  animation: slideDown 0.2s ease;
}

/* Subtle pulse for primary button */
/* Removed redundant btn-primary styles - using updated styles above */

/* Loading state */
.btn.loading {
  pointer-events: none;
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Smooth focus states */
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Enhanced hover states */
.feature-card:hover .feature-icon {
  transform: scale(1.05);
  background: var(--primary-dark);
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

/* Smooth page transitions */
html {
  scroll-padding-top: 80px;
}

/* Enhanced glassmorphism on scroll */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Glassmorphism glow effect */
@keyframes glassGlow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 0 40px rgba(99, 102, 241, 0.1);
  }
}

.navbar:hover {
  animation: glassGlow 2s ease-in-out infinite;
}

/* Glassmorphic Integration Cards */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.integration-card {
  position: relative;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: center 25%;
}

/* Individual Background Images */
.wordpress-bg {
  background-image: url('/img/logos/integrations/wordPress_logo_blue.svg');
}

.shopify-bg {
  background-image: url('/img/logos/integrations/shopify_logo_white_bg.svg');
}

.webflow-bg {
  background-image: url('/img/logos/integrations/webflow_logo.svg');
}

.notion-bg {
  background-image: url('/img/logos/integrations/notion_logo.svg');
}

.wix-bg {
  background-image: url('/img/logos/integrations/wix_logo_white.svg');
}

.framer-bg {
  background-image: url('/img/logos/integrations/framer_logo_darkblack.svg');
}

.integration-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.integration-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}

.integration-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.integration-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.integration-description {
  font-size: 0.875rem;
  color: #4a5568;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Removed old framer card styles - now handled by framer-bg class */

@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .integration-card {
    height: 200px;
    background-size: 80px 80px;
  }

  .integration-content {
    padding: 1.5rem;
  }

}