:root {
  --primary-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --primary-color: #000000;
  --primary-dark: #1a1a1a;
  --secondary-color: #f6f9fc;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --border-color: #e2e8f0;
  --success-color: #48bb78;
  --danger-color: #f56565;
  --warning-color: #ed8936;
  --white: #ffffff;
  --shadow-sm: 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);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'bbs-sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  background: #f8f9fa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Navigation with Glassmorphism */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  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;
}

.navbar.scrolled .nav-logo {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

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

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  margin-right: auto;
}

@media (min-width: 1100px) {
  .nav-brand {
    margin-left: 0;
    margin-right: 0;
  }
}

.nav-logo {
  height: 56px;
  max-width: 220px;
  width: auto;
  transition: all 0.4s ease;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-brand:hover .nav-logo {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(255, 255, 255, 0.6));
}

.navbar.scrolled .nav-brand:hover .nav-logo {
  filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.4));
}

.nav-brand-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  text-shadow: none;
}

.navbar.scrolled .nav-brand-text {
  color: #2d3748;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-brand:hover .nav-brand-text {
  transform: translateY(-2px);
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(255, 255, 255, 0.6);
}

.navbar.scrolled .nav-brand:hover .nav-brand-text {
  color: #1a202c;
  text-shadow: 0 2px 8px rgba(45, 55, 72, 0.2);
}

/* Language Switcher */
.language-switcher {
  position: relative;
  margin-left: 0.75rem;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: #000000;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .language-btn {
  color: var(--text-primary);
}

.current-lang {
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

.lang-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.language-switcher.active .lang-icon {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.language-switcher.active .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.lang-option[data-lang].active {
  background: rgba(124, 58, 237, 0.15);
  color: #7c3aed;
  font-weight: 600;
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-menu a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  text-shadow: none;
  transition: all 0.4s ease;
  position: relative;
  opacity: 0.9;
}

.navbar.scrolled .nav-menu a {
  color: var(--text-primary);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}

.nav-menu a:hover {
  opacity: 1;
}

.navbar.scrolled .nav-menu a:hover {
  color: var(--primary-color);
  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-color);
  transition: width 0.2s ease;
}

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

.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: 320px;
  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: 12px;
  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: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-bottom: 6px;
}

.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 !important;
}

.dropdown-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.dropdown-item-icon svg {
  width: 22px;
  height: 22px;
}

.dropdown-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Wide dropdown menu for Solutions */
.dropdown-menu-wide {
  min-width: 500px;
  padding: 16px;
}

.dropdown-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-column-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  padding: 0 12px;
}

.dropdown-column a {
  margin-bottom: 0;
}

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

.nav-actions .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

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

@media (max-width: 1099px) {
  .nav-actions .btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.8125rem;
  }

  .nav-actions .btn-secondary {
    display: none;
  }
}

@media (max-width: 900px) {
  .nav-actions .btn {
    padding: 0.55rem 0.95rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav-actions .btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.65rem;
  }

  .nav-logo {
    height: 50px;
  }

  /* Fix nav-brand width to prevent shifting */
  .nav-brand {
    min-width: 120px;
    display: inline-block;
  }

  /* Smaller font for mobile */
  .nav-brand-text {
    font-size: 1rem;
    display: inline-block;
    position: relative;
    white-space: nowrap;
  }

  /* Letter animation setup */
  .nav-brand-text .letter {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.15s ease, width 0.15s ease, margin 0.15s ease;
  }

  /* Hide language switcher by default on mobile */
  .language-switcher {
    display: none;
    margin-left: 0.5rem;
  }

  /* When mobile menu button is active - staggered letter disappearance */
  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter:not(.keep) {
    opacity: 0;
    width: 0;
    margin: 0;
    overflow: hidden;
  }

  /* Stagger animation delays for each letter */
  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter[data-index='1'] {
    transition-delay: 0.05s;
  }

  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter[data-index='2'] {
    transition-delay: 0.1s;
  }

  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter[data-index='3'] {
    transition-delay: 0.15s;
  }

  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter[data-index='4'] {
    transition-delay: 0.2s;
  }

  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter[data-index='5'] {
    transition-delay: 0.25s;
  }

  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter[data-index='6'] {
    transition-delay: 0.3s;
  }

  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter[data-index='8'] {
    transition-delay: 0.35s;
  }

  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter[data-index='9'] {
    transition-delay: 0.4s;
  }

  .mobile-menu-btn.active~.nav-brand .nav-brand-text .letter[data-index='10'] {
    transition-delay: 0.45s;
  }

  .mobile-menu-btn.active~.language-switcher {
    display: flex;
  }

  .nav-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    height: 48px;
  }

  .nav-container {
    min-height: 52px;
    padding: 4px 8px;
    gap: 0.25rem;
  }

  .nav-brand {
    min-width: 100px;
  }

  .nav-brand-text {
    font-size: 0.85rem;
  }

  .nav-actions .btn {
    padding: 0.3rem 0.45rem;
    font-size: 0.55rem;
  }

  .mobile-menu-btn.active~.nav-brand .nav-brand-text::after {
    font-size: 0.85rem;
  }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--text-primary);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  position: relative;
}

.mobile-menu-btn:hover {
  opacity: 0.7;
}

.hamburger-icon {
  width: 20px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

/* Animated X when menu is active */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  position: absolute;
  top: 7px;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  position: absolute;
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 78px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 40;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-item {
  display: flex;
  flex-direction: column;
}

.mobile-menu-trigger {
  padding: 12px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-trigger .chevron-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-menu-item.active .mobile-menu-trigger .chevron-icon {
  transform: rotate(180deg);
}

.mobile-menu-nav>a {
  padding: 12px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-menu-nav>a:hover,
.mobile-menu-trigger:hover {
  background: rgba(99, 102, 241, 0.08);
}

.mobile-dropdown {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  margin-top: 4px;
  overflow: hidden;
}

.mobile-dropdown.active {
  display: flex;
}

.mobile-dropdown a {
  padding: 10px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.mobile-dropdown a:hover {
  background: rgba(99, 102, 241, 0.06);
  color: var(--text-primary);
  transform: translateX(4px);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-actions .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.mobile-menu-actions .btn-primary {
  display: none;
}

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

/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: #1e2330;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: none;
  transition: all 0.4s ease;
}

.navbar.scrolled .btn-primary {
  color: #ffffff;
  background: #1e2330;
  border-color: rgba(30, 35, 48, 0.3);
  text-shadow: none;
}

.btn-primary:hover {
  background: #2a3042;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .btn-primary:hover {
  color: #ffffff;
  background: #2a3042;
}

.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: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: none;
  transition: all 0.4s ease;
}

.navbar.scrolled .btn-secondary {
  color: #2d3748;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(45, 55, 72, 0.15);
  text-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .btn-secondary:hover {
  color: #1a202c;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(45, 55, 72, 0.25);
}

.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-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

@media (max-width: 768px) {

  .btn,
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Hero Section */
.hero-section {
  min-height: 90vh;
  padding: 8rem 0 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content-wrapper {
  max-width: 700px;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
}

.hero-cta-section {
  margin-bottom: 2rem;
}

.cta-subtext {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  color: white;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image {
  margin-top: 3rem;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: var(--white);
}

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

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.feature-link:hover {
  gap: 0.75rem;
}

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

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 3px solid var(--primary-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 0;
  background: var(--white);
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: var(--transition);
}

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

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: var(--white);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.price-currency {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  color: var(--text-secondary);
}

.pricing-features {
  padding: 2rem 0;
  list-style: none;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--text-secondary);
}

.pricing-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--success-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  margin-top: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: var(--secondary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.testimonial-title {
  color: var(--text-light);
  font-size: 0.875rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: var(--primary-gradient);
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-white {
  background: white;
  color: #7c3aed;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

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

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

/* Footer */
.footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: #cbd5e0;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

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

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-link {
  display: block;
  color: #cbd5e0;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

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

/* Auth Pages (Login/Signup) */
.auth-wrapper {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
}

.auth-container {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
  overflow: hidden;
  display: flex;
  max-width: 900px;
  width: 100%;
}

.auth-form-section {
  flex: 1;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Compact Login Design */
.auth-wrapper-compact {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg,
      rgba(102, 126, 234, 0.6),
      rgba(118, 75, 162, 0.6),
      rgba(240, 147, 251, 0.5),
      rgba(245, 87, 108, 0.5),
      rgba(79, 172, 254, 0.6),
      rgba(0, 242, 254, 0.5));
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.auth-wrapper-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  33% {
    transform: translateY(-20px) rotate(2deg);
    opacity: 0.9;
  }

  66% {
    transform: translateY(20px) rotate(-2deg);
    opacity: 0.8;
  }
}

.auth-container-compact {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
  padding: 2rem 1.5rem;
  max-width: 400px;
  width: calc(100% - 2rem);
  max-height: calc(100vh - 2rem);
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-header-compact {
  margin-bottom: 1.5rem;
}

.auth-logo-compact {
  width: auto;
  height: 100px;
  max-width: 180px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.auth-brand-text-compact {
  font-size: 2rem;
  font-weight: 900;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.auth-title-compact {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.auth-subtitle-compact {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.5;
}

.social-auth-compact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-btn-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #374151;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  gap: 0.75rem;
}

.social-btn-compact:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-divider-compact {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: #9ca3af;
  font-size: 0.875rem;
}

.form-divider-compact::before,
.form-divider-compact::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.form-divider-compact span {
  padding: 0 1rem;
}

.auth-form-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-input-compact {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.875rem;
  transition: all 0.2s;
}

.form-input-compact:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.btn-primary-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1rem;
  background: #7c3aed;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px -5px rgba(124, 58, 237, 0.25);
}

.btn-primary-compact:hover {
  background: #6d28d9;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(124, 58, 237, 0.35);
}

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

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

.auth-footer-compact {
  margin-bottom: 1rem;
}

.terms-text {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}

.terms-text a {
  margin: 0 0.25rem;
  text-decoration: none;
}

.auth-signup-footer {
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.auth-signup-footer p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.auth-signup-footer a {
  margin-left: 0.25rem;
  font-weight: 500;
  text-decoration: none;
}

/* Mobile responsive adjustments for compact login */
@media (max-width: 768px) {
  .auth-wrapper-compact {
    padding: 0.5rem;
  }

  .auth-container-compact {
    padding: 1.5rem 1rem;
    max-height: calc(100vh - 1rem);
    width: calc(100% - 1rem);
  }

  .auth-header-compact {
    margin-bottom: 1rem;
  }

  .auth-logo-compact {
    height: 80px;
    margin-bottom: 0.75rem;
  }

  .auth-brand-text-compact {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .auth-title-compact {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-indent: -9999px;
    line-height: 0;
    position: relative;
  }

  .auth-title-compact::after {
    content: 'Welcome back';
    text-indent: 0;
    line-height: 1.2;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }

  .auth-subtitle-compact {
    display: none;
  }

  .social-auth-compact {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .social-btn-compact {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
  }

  .form-divider-compact {
    margin: 1rem 0;
  }

  .auth-form-compact {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .form-input-compact {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
  }

  .btn-primary-compact {
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
  }

  .auth-footer-compact {
    margin-bottom: 0.75rem;
  }

  .terms-text {
    font-size: 0.6875rem;
  }

  .auth-signup-footer {
    padding-top: 0.75rem;
  }

  .auth-signup-footer p {
    font-size: 0.8125rem;
  }
}

.auth-image-section {
  flex: 1;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
}

.auth-image-content {
  text-align: center;
  color: var(--white);
}

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

.auth-image-description {
  font-size: 1.125rem;
  opacity: 0.95;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo {
  height: 50px;
  margin-bottom: 1.5rem;
}

.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  color: var(--text-secondary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.875rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.form-checkbox:checked {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.form-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
  color: var(--text-secondary);
}

.form-divider::before,
.form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: var(--border-color);
}

.form-divider::before {
  left: 0;
}

.form-divider::after {
  right: 0;
}

.social-auth {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.social-auth-btn:hover {
  background: var(--secondary-color);
  border-color: var(--primary-color);
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

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

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features-grid,
  .testimonials-grid,
  .pricing-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .auth-container {
    flex-direction: column;
  }

  .auth-image-section {
    display: none;
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in {
  animation: slideIn 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

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

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

/* Navigation Dropdown */
/* Removed duplicate - already defined above */

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

.dropdown-item-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* New Hero Section Styles */
.hero-section.relative {
  position: relative;
}

.hero-section.overflow-hidden {
  overflow: hidden;
}

.hero-section.rounded-b-24 {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.hero-section.min-h-screen {
  min-height: 100vh;
  height: 100vh;
}

@media (min-width: 768px) {
  .hero-section.min-h-screen {
    min-height: 100vh;
    height: 100vh;
  }
}

.hero-section.flex-col {
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
  border-radius: 0;
}

/* Stats Badge at Bottom */
.hero-stats-badge {
  position: absolute;
  bottom: 1rem;
  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .hero-stats-badge {
    display: none;
  }
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: 100%;
  max-width: 700px;
}

.hero-stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1rem 0.75rem;
  text-align: center;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
  display: block;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

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

  .hero-stat-number {
    font-size: 1.75rem;
  }

  .hero-stat-label {
    font-size: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .hero-stat-item {
    padding: 1.25rem 1rem;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-stat-label {
    font-size: 0.875rem;
  }
}

.glass-blur {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-text {
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pill-header {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-weight: 600;
  color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Main Content */
.hero-main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 40;
  padding-top: 6rem;
  position: relative;
  flex: 0 0 auto;
}

.hero-subtitle-small {
  font-size: 1rem;
  color: #000000;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
}

.hero-title-large {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #000000;
  padding-top: 0.75rem;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.7);
}

.hero-cta-button {
  cursor: pointer;
  display: inline-flex;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  border-radius: 50px;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.25);
  white-space: nowrap;
}

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

.hero-icon {
  display: none;
}

.hero-cta-text {
  font-size: 1rem;
}

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

.hero-cta-button:hover::after {
  transform: translateX(4px);
}

/* Hero Image Container */
.hero-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: -4rem;
}

.hero-man-desktop {
  z-index: 10;
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
}

.hero-man-mobile {
  z-index: 10;
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
}

/* Integration Logos */
.integration-logos-left {
  position: absolute;
  top: 20%;
  left: 5%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.integration-logos-right {
  position: absolute;
  top: 20%;
  right: 5%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.integration-logo-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 80px;
  height: 40px;
}

.integration-logo-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.25);
}

.integration-logo-item img {
  height: 20px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
}

@media (max-width: 639px) {

  .integration-logos-left,
  .integration-logos-right {
    display: none;
  }
}

@media (min-width: 640px) {
  .integration-logo-item {
    width: 90px;
    height: 45px;
    padding: 0.6rem 0.85rem;
  }

  .integration-logo-item img {
    height: 22px;
    max-width: 65px;
  }
}

@media (min-width: 1024px) {
  .integration-logos-left {
    left: 8%;
    top: 25%;
  }

  .integration-logos-right {
    right: 8%;
    top: 25%;
  }

  .integration-logo-item {
    width: 100px;
    height: 50px;
  }

  .integration-logo-item img {
    height: 24px;
    max-width: 70px;
  }
}

@media (min-width: 1280px) {
  .integration-logos-left {
    left: 10%;
  }

  .integration-logos-right {
    right: 10%;
  }
}

/* Old Comment Boxes (keeping for fallback) */
.comment-box-1 {
  display: none;
}

.comment-box-2 {
  display: none;
}

.comment-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.comment-number {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: 800;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.comment-text {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.comment-image-wrapper {
  display: flex;
  align-items: flex-start;
}

.comment-img-desktop {
  width: 100%;
  max-width: 450px;
  height: auto;
}

.comment-img-mobile {
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* Responsive Styles */
@media (min-width: 640px) {
  .hero-stats-badge {
    bottom: 4rem;
  }

  .hero-subtitle-small {
    font-size: 1rem;
  }

  .hero-title-large {
    font-size: 3.5rem;
    padding-top: 0.5rem;
  }

  .hero-cta-button {
    padding: 0.65rem 1.25rem;
    margin-top: 1.5rem;
  }

  .hero-cta-text {
    font-size: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-man-desktop {
    max-width: 750px;
  }

  .comment-box-1 {
    left: 2%;
    top: 12%;
    max-width: 24rem;
  }

  .comment-box-1 .comment-step {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .comment-box-1 .comment-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .comment-box-1 .comment-text {
    font-size: 1rem;
  }

  .comment-box-1 .comment-img-desktop {
    max-width: 450px;
  }

  .comment-box-2 {
    right: 2%;
    bottom: 20%;
    max-width: 18rem;
  }

  .comment-box-2 .comment-step {
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .comment-box-2 .comment-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .comment-box-2 .comment-text {
    font-size: 1rem;
  }

  .comment-box-2 .comment-img-desktop {
    max-width: 280px;
  }
}

@media (min-width: 768px) {
  .hero-main-content {
    padding-top: 7rem;
  }

  .comment-box-1 {
    left: 5%;
  }

  .comment-box-2 {
    right: 5%;
  }
}

@media (min-width: 1024px) {
  .hero-main-content {
    padding-top: 8rem;
  }

  .hero-title-large {
    font-size: 4rem;
  }

  .hero-man-desktop {
    max-width: 850px;
  }

  .comment-box-1 {
    left: 8%;
    top: 15%;
    max-width: 30rem;
  }

  .comment-box-1 .comment-img-desktop {
    max-width: 500px;
  }

  .comment-box-2 {
    right: 8%;
    bottom: 22%;
    max-width: 20rem;
  }

  .comment-box-2 .comment-img-desktop {
    max-width: 320px;
  }
}

@media (min-width: 1280px) {
  .hero-main-content {
    padding-top: 9rem;
  }

  .hero-subtitle-small {
    font-size: 1.125rem;
  }

  .hero-title-large {
    font-size: 4.5rem;
  }

  .hero-cta-button {
    padding: 0.75rem 1.5rem;
  }

  .hero-cta-text {
    font-size: 1.125rem;
  }

  .hero-man-desktop {
    max-width: 950px;
  }

  .comment-box-1 {
    left: 10%;
    max-width: 32rem;
  }

  .comment-box-1 .comment-img-desktop {
    max-width: 550px;
  }

  .comment-box-2 {
    right: 10%;
    max-width: 22rem;
  }

  .comment-box-2 .comment-img-desktop {
    max-width: 350px;
  }
}

/* Mobile specific adjustments */
@media (max-width: 639px) {
  .comment-box-1 .comment-step {
    position: relative;
    transform: translateX(42px) translateY(23px);
  }

  .comment-box-1 .comment-number {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.625rem;
  }

  .comment-box-1 .comment-text {
    font-size: 0.75rem;
  }

  .comment-box-1 .comment-img-mobile {
    width: 195px;
    height: 51px;
    transform: translateX(34px) translateY(21px);
  }

  .comment-box-2 .comment-step {
    position: relative;
    transform: translateX(-17px) translateY(2px);
  }

  .comment-box-2 .comment-number {
    position: absolute;
    left: -31px;
    top: -3px;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.625rem;
  }

  .comment-box-2 .comment-text {
    font-size: 0.75rem;
  }

  .comment-box-2 .comment-img-mobile {
    width: 118px;
    height: 56px;
    transform: translateX(-25px) translateY(-1px);
  }
}

/* ===== 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);
  color: #000000;
}

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

@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);
  }
}

/* ===== MODERN FEATURES SECTION ===== */
.features-modern {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 0;
}

.features-modern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.feature-modern-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.feature-modern-card:hover::before {
  opacity: 1;
}

.feature-icon-modern {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.feature-modern-card:hover .feature-icon-modern {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.feature-icon-modern svg {
  width: 32px;
  height: 32px;
  color: white;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.feature-modern-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  margin: 0;
}

.feature-modern-description {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Add stagger animation to cards */
.feature-modern-card:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.1s backwards;
}

.feature-modern-card:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.feature-modern-card:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.feature-modern-card:nth-child(4) {
  animation: fadeInUp 0.6s ease 0.4s backwards;
}

.feature-modern-card:nth-child(5) {
  animation: fadeInUp 0.6s ease 0.5s backwards;
}

.feature-modern-card:nth-child(6) {
  animation: fadeInUp 0.6s ease 0.6s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .features-modern {
    padding: 3rem 0;
  }

  .feature-modern-card {
    padding: 2rem 1.5rem;
  }

  .feature-icon-modern {
    width: 56px;
    height: 56px;
  }

  .feature-icon-modern svg {
    width: 28px;
    height: 28px;
  }

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

  .feature-modern-description {
    font-size: 0.95rem;
  }
}

/* ===== INTEGRATION HERO SECTIONS ===== */
.integration-hero {
  margin: 0.5rem auto 2rem;
  max-width: calc(100% - 4rem);
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.integration-hero::before {
  display: none;
}

.integration-hero .hero-bg {
  opacity: 1;
  border-radius: 1.5rem !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: 300px;
  object-fit: contain;
  width: auto;
  max-width: 600px;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  position: static;
  clip-path: inset(0 round 1.5rem);
}

.integration-hero .hero-main-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(240, 240, 255, 0.6) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.integration-hero .hero-content-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  text-align: left;
}

.integration-hero .integration-logo-hero {
  align-self: flex-start;
  position: relative;
  background: linear-gradient(135deg, rgba(150, 150, 150, 0.4) 0%, rgba(100, 100, 100, 0.4) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: 180px;
  height: 100px;
}

.integration-hero .integration-logo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(100, 150, 200, 0.1) 0%, rgba(150, 100, 200, 0.1) 100%);
  border-radius: 12px;
  z-index: -1;
}

.integration-hero .integration-logo-hero img {
  height: 60px !important;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 0 !important;
}

.integration-hero .hero-subtitle-small {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(168, 85, 247, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.integration-hero .hero-title-large {
  background: linear-gradient(135deg, #1a202c 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: left;
}

@media (max-width: 768px) {
  .integration-hero {
    margin: 1rem auto;
    max-width: calc(100% - 2rem);
  }

  .integration-hero .hero-bg {
    border-radius: 1.5rem;
  }

  .integration-hero .hero-main-content {
    padding: 2rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .integration-hero .hero-bg {
    order: -1;
    max-width: 100%;
  }
}

/* ===== LANGUAGES SECTION ===== */
.languages-section {
  padding: 5rem 0;
  background: linear-gradient(135deg,
      #fef5f7 0%,
      #fde8f0 15%,
      #fce4ec 30%,
      #f9e4f2 50%,
      #f5e8f8 70%,
      #efe9fa 85%,
      #e8eaf9 100%);
  overflow: hidden;
  position: relative;
}

.languages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.language-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.language-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
  z-index: -1;
}

.language-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15),
    0 0 0 1px rgba(124, 58, 237, 0.2) inset;
  border-color: rgba(124, 58, 237, 0.3);
}

.language-card:hover::before {
  opacity: 1;
}

.language-flag {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.language-info {
  text-align: center;
  width: 100%;
}

.language-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.language-native {
  font-size: 0.75rem;
  color: #718096;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.languages-footer {
  margin-top: 3rem;
  text-align: center;
}

.languages-note {
  font-size: 0.875rem;
  color: #718096;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .languages-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}

@media (max-width: 768px) {
  .languages-section {
    padding: 3rem 0;
  }

  .languages-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.75rem;
  }

  .language-card {
    padding: 1rem 0.75rem;
    gap: 0.5rem;
  }

  .language-flag {
    font-size: 2rem;
  }

  .language-name {
    font-size: 0.8125rem;
  }

  .language-native {
    font-size: 0.6875rem;
  }

  .languages-note {
    font-size: 0.8125rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .languages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== EXAMPLES SECTION ===== */
.examples-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.example-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.example-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(168, 85, 247, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.example-card:hover {
  border-color: #cbd5e0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.example-card:hover::before {
  opacity: 1;
}

.example-logo {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
  min-height: 35px;
}

.example-logo img {
  max-width: 100px;
  height: 35px;
  object-fit: contain;
}

.example-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
  width: fit-content;
}

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

.example-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.example-description {
  font-size: 0.875rem;
  color: #718096;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.example-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.example-link {
  font-size: 0.875rem;
  color: #4a5568;
  font-weight: 600;
  transition: color 0.3s ease;
}

.example-card:hover .example-link {
  color: #7c3aed;
}

.example-note {
  font-size: 0.75rem;
  color: #a0aec0;
  margin: 0;
}

.examples-cta {
  margin-top: 3rem;
  text-align: center;
}

.examples-note {
  font-size: 0.875rem;
  color: #4a5568;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.8;
}

.examples-blog-link {
  color: #7c3aed;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
  margin: 0 0.25rem;
}

.examples-blog-link:hover {
  color: #6d28d9;
}

@media (max-width: 768px) {
  .examples-section {
    padding: 3rem 0;
  }

  .examples-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .example-card {
    padding: 1.5rem;
  }

  .examples-note {
    font-size: 0.8125rem;
    padding: 0 1rem;
  }
}

/* ===== SCROLL-TRIGGERED IMAGE SECTION ===== */
.scroll-image-section {
  padding: 6rem 0;
  background: #c4b5fd;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.scroll-image-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.scroll-image-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 2rem;
  height: 480px;
}

.scroll-image-item {
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  padding: 1rem 0;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.scroll-image-item.active {
  height: 200px;
}

.scroll-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.scroll-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c3aed;
  transition: all 0.3s ease;
}

.scroll-item-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.scroll-image-item.active .scroll-item-icon {
  color: white;
  transform: scale(1.1);
}

.scroll-image-item.active .scroll-item-icon img {
  filter: brightness(0) invert(1);
}

.scroll-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  transition: all 0.3s ease;
}

.scroll-image-item.active .scroll-step-title {
  color: #7c3aed;
}

.scroll-step-description {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  margin-left: 64px;
  margin-top: 0.5rem;
}

.scroll-step-description p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

.scroll-image-item.active .scroll-step-description {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.scroll-image-display {
  position: sticky;
  top: 120px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 192, 203, 0.7) 100%);
  backdrop-filter: blur(20px);
  border: none;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
}

.scroll-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 1rem;
}

.scroll-image.active {
  opacity: 1;
  z-index: 1;
}

/* Connection Diagram Styles */
.connection-diagram {
  width: 100%;
  height: 100%;
  position: relative;
}

.connection-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 2rem;
}

.connection-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}

.connection-left {
  align-items: flex-start;
}

.connection-right {
  align-items: flex-end;
}

.connection-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 60px;
  transition: all 0.3s ease;
  background: rgba(128, 128, 128, 0.15) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(128, 128, 128, 0.2) !important;
}

.connection-logo-tile:hover {
  transform: translateX(-5px) scale(1.05);
  background: rgba(128, 128, 128, 0.25) !important;
  border-color: rgba(128, 128, 128, 0.3) !important;
}

.connection-logo-tile img {
  max-width: 60px;
  max-height: 35px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.connection-creatorflow-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 90px;
  transition: all 0.3s ease;
}

.connection-creatorflow-tile:hover {
  transform: translateX(5px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.connection-creatorflow-tile img {
  max-width: 90px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .connection-container {
    padding: 1rem;
  }

  .connection-side {
    gap: 0.5rem;
  }

  .connection-logo-tile {
    width: 70px;
    height: 42px;
  }

  .connection-logo-tile img {
    max-width: 40px;
    max-height: 24px;
  }

  .connection-creatorflow-tile {
    width: 90px;
    height: 60px;
  }

  .connection-creatorflow-tile img {
    max-width: 60px;
    max-height: 35px;
  }
}

.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.connection-svg {
  width: 100%;
  height: 100%;
}

.connection-line {
  opacity: 0.6;
  animation: flowAnimation 3s ease-in-out infinite;
}

.connection-line:nth-child(2) {
  animation-delay: 0.2s;
}

.connection-line:nth-child(3) {
  animation-delay: 0.4s;
}

.connection-line:nth-child(4) {
  animation-delay: 0.6s;
}

.connection-line:nth-child(5) {
  animation-delay: 0.8s;
}

.connection-line:nth-child(6) {
  animation-delay: 1s;
}

@keyframes flowAnimation {

  0%,
  100% {
    opacity: 0.4;
    stroke-dashoffset: 0;
  }

  50% {
    opacity: 0.8;
    stroke-dashoffset: 10;
  }
}

@media (max-width: 1024px) {
  .scroll-image-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .scroll-image-display {
    position: relative;
    top: 0;
    height: 400px;
    order: -1;
  }

  .scroll-image-content {
    gap: 2rem;
  }

  .scroll-image-item {
    min-height: auto;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .scroll-image-section {
    padding: 4rem 0;
  }

  .scroll-step-title {
    font-size: 1.5rem;
  }

  .scroll-step-description {
    font-size: 1rem;
  }

  .scroll-image-display {
    height: 300px;
    padding: 1.5rem;
  }
}

/* ===== MODERN PRICING SECTION ===== */
.pricing-modern {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 6rem 0;
}

.pricing-modern-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.pricing-modern-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 2rem;
  padding: 3rem 2.5rem;
  width: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

.pricing-modern-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border-radius: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.pricing-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(124, 58, 237, 0.25);
}

.pricing-modern-card:hover::before {
  opacity: 0.1;
}

.pricing-modern-badge {
  position: absolute;
  top: -12px;
  right: 2.5rem;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.pricing-modern-header {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-modern-plan {
  font-size: 2rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.pricing-modern-subtitle {
  font-size: 1rem;
  color: #4a5568;
  margin: 0;
}

.pricing-modern-price {
  text-align: left;
  margin-bottom: 2rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.price-main .currency {
  font-size: 2rem;
  font-weight: 700;
  color: #7c3aed;
}

.price-main .amount {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-main .period {
  font-size: 1.125rem;
  color: #718096;
  font-weight: 500;
}

.price-original {
  font-size: 1.125rem;
  color: #a0aec0;
  text-decoration: line-through;
}

/* Pricing Meta */
.pricing-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #718096;
  margin-bottom: 0.75rem;
}

.globe-icon {
  color: #718096;
  width: 14px;
  height: 14px;
}

/* Agency Pricing Card */
.pricing-agency {
  background: #f8f9fa;
  border-color: #e2e8f0;
}

.pricing-cta-secondary {
  background: white;
  color: #1a202c;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-cta-secondary:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing-modern-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  margin-bottom: 1rem;
}

.pricing-modern-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.pricing-modern-cta .arrow-icon {
  transition: transform 0.3s ease;
}

.pricing-modern-cta:hover .arrow-icon {
  transform: translateX(4px);
}

.pricing-modern-note {
  text-align: center;
  color: #718096;
  font-size: 0.875rem;
  margin-bottom: 2.5rem;
}

.pricing-modern-features {
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding-top: 2rem;
}

.features-group-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
}

.pricing-feature-item:hover {
  transform: translateX(4px);
}

.feature-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-check svg {
  color: white;
}

.pricing-feature-item span {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 768px) {
  .pricing-modern {
    padding: 4rem 0;
  }

  .pricing-modern-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-modern-card {
    padding: 2.5rem 1.5rem;
  }

  .pricing-modern-plan {
    font-size: 1.75rem;
  }

  .price-main .amount {
    font-size: 3rem;
  }

  .pricing-modern-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* ===== PRICING PAGE SPECIFIC ===== */
.pricing-card-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.section-title-pricing {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000000 !important;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.section-description-pricing {
  font-size: 1.125rem;
  color: #1a202c;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-badge-top {
  position: absolute;
  top: -12px;
  right: 2.5rem;
  background: #7c3aed;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.pricing-meta-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #718096;
  margin-bottom: 0.75rem;
}

.pricing-features-list {
  border-top: 1px solid rgba(124, 58, 237, 0.1);
  padding-top: 2rem;
}

.features-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1.5rem;
}

.pricing-features-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: #4a5568;
}

.pricing-features-list .check-icon {
  flex-shrink: 0;
  color: #7c3aed;
  margin-top: 0.125rem;
}

.agency-card {
  background: #f8f9fa;
  border-color: #e2e8f0;
}

.pricing-cta-agency {
  background: white;
  color: #1a202c;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-cta-agency:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
  }

  .section-title-pricing {
    font-size: 2rem;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.faq-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1rem;
}

.faq-subtitle {
  font-size: 1.125rem;
  color: #718096;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #cbd5e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  user-select: none;
}

.faq-question span {
  font-weight: 600;
  color: #1a202c;
  font-size: 1rem;
  flex: 1;
  text-align: left;
}

.faq-icon {
  flex-shrink: 0;
  color: #718096;
  transition: transform 0.2s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .faq-item {
    padding: 0 1rem;
  }

  .faq-question {
    padding: 1.25rem 0;
  }
}

/* ===== STATS ===== */
.stats {
  display: none;
  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: #e8e9eb;
  border: none;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  overflow: visible;
}

.pricing-card[data-plan="free"] {
  background: #e8e9eb;
}

.pricing-card[data-plan="pro"],
.pricing-card[data-plan="pro-ai"],
.pricing-card.featured-card {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #000000;
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
}

.pricing-card[data-plan="agency"],
.pricing-card[data-plan="elite"] {
  background: linear-gradient(135deg, #4f5fd9 0%, #3a47a8 100%);
  color: white;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.pricing-card[data-plan="pro"]:hover,
.pricing-card[data-plan="pro-ai"]:hover,
.pricing-card.featured-card:hover {
  transform: scale(1.05) translateY(-8px);
}

.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: center;
  margin-bottom: 1.5rem;
}

.pricing-plan-name {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
}

.pricing-card[data-plan="pro"] .pricing-plan-name,
.pricing-card[data-plan="pro-ai"] .pricing-plan-name,
.pricing-card.featured-card .pricing-plan-name {
  color: #000000;
}

.pricing-card[data-plan="agency"] .pricing-plan-name,
.pricing-card[data-plan="elite"] .pricing-plan-name {
  color: white;
}

.pricing-plan-subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0.5rem 0 0 0;
  font-weight: 500;
}

.pricing-card[data-plan="pro"] .pricing-plan-subtitle,
.pricing-card[data-plan="pro-ai"] .pricing-plan-subtitle,
.pricing-card.featured-card .pricing-plan-subtitle {
  color: rgba(0, 0, 0, 0.7);
}

.pricing-card[data-plan="agency"] .pricing-plan-subtitle,
.pricing-card[data-plan="elite"] .pricing-plan-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-price-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}

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

.price-currency {
  font-size: 3rem;
  font-weight: 700;
  color: #000000;
}

.price-amount {
  font-size: 5rem;
  font-weight: 900;
  color: #000000;
  line-height: 1;
}

.pricing-card[data-plan="pro"] .price-currency,
.pricing-card[data-plan="pro-ai"] .price-currency,
.pricing-card.featured-card .price-currency,
.pricing-card[data-plan="pro"] .price-amount,
.pricing-card[data-plan="pro-ai"] .price-amount,
.pricing-card.featured-card .price-amount {
  color: #000000;
}

.pricing-card[data-plan="agency"] .price-currency,
.pricing-card[data-plan="elite"] .price-currency,
.pricing-card[data-plan="agency"] .price-amount,
.pricing-card[data-plan="elite"] .price-amount {
  color: white;
}

.price-period,
.period-text {
  font-size: 1.125rem;
  color: #4a5568;
  font-weight: 500;
}

.pricing-card[data-plan="pro"] .price-period,
.pricing-card[data-plan="pro-ai"] .price-period,
.pricing-card.featured-card .price-period,
.pricing-card[data-plan="pro"] .period-text,
.pricing-card[data-plan="pro-ai"] .period-text,
.pricing-card.featured-card .period-text {
  color: rgba(0, 0, 0, 0.7);
}

.pricing-card[data-plan="agency"] .price-period,
.pricing-card[data-plan="elite"] .price-period,
.pricing-card[data-plan="agency"] .period-text,
.pricing-card[data-plan="elite"] .period-text {
  color: rgba(255, 255, 255, 0.8);
}

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

.pricing-button-section {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  padding: 1rem 3rem;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 300px;
  background: white;
  color: #000000;
  border: none;
  transition: all 0.3s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card[data-plan="pro"] .pricing-cta,
.pricing-card[data-plan="pro-ai"] .pricing-cta,
.pricing-card.featured-card .pricing-cta {
  background: #000000;
  color: #00ff88;
}

.pricing-card[data-plan="agency"] .pricing-cta,
.pricing-card[data-plan="elite"] .pricing-cta {
  background: white;
  color: #3a47a8;
}

.pricing-note {
  color: #4a5568;
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
}

.pricing-card[data-plan="pro"] .pricing-note,
.pricing-card[data-plan="pro-ai"] .pricing-note,
.pricing-card.featured-card .pricing-note {
  color: rgba(0, 0, 0, 0.7);
}

.pricing-card[data-plan="agency"] .pricing-note,
.pricing-card[data-plan="elite"] .pricing-note {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-description {
  text-align: center;
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.pricing-card[data-plan="pro"] .pricing-description,
.pricing-card[data-plan="pro-ai"] .pricing-description,
.pricing-card.featured-card .pricing-description {
  color: rgba(0, 0, 0, 0.8);
}

.pricing-card[data-plan="agency"] .pricing-description,
.pricing-card[data-plan="elite"] .pricing-description {
  color: rgba(255, 255, 255, 0.9);
}

.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: #2d3748;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.pricing-card[data-plan="pro"] .feature-item span,
.pricing-card[data-plan="pro-ai"] .feature-item span,
.pricing-card.featured-card .feature-item span {
  color: rgba(0, 0, 0, 0.9);
}

.pricing-card[data-plan="agency"] .feature-item span,
.pricing-card[data-plan="elite"] .feature-item span {
  color: rgba(255, 255, 255, 0.95);
}

.pricing-features-list {
  margin-top: auto;
}

.features-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  text-align: left;
}

.pricing-card[data-plan="pro"] .features-title,
.pricing-card[data-plan="pro-ai"] .features-title,
.pricing-card.featured-card .features-title {
  color: rgba(0, 0, 0, 0.6);
}

.pricing-card[data-plan="agency"] .features-title,
.pricing-card[data-plan="elite"] .features-title {
  color: rgba(255, 255, 255, 0.7);
}

.check-icon {
  color: #10b981;
  flex-shrink: 0;
}

.pricing-card[data-plan="pro"] .check-icon,
.pricing-card[data-plan="pro-ai"] .check-icon,
.pricing-card.featured-card .check-icon {
  color: #000000;
}

.pricing-card[data-plan="agency"] .check-icon,
.pricing-card[data-plan="elite"] .check-icon {
  color: white;
}

.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 {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.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 ===== */
/* ===== MODERN FOOTER ===== */
.footer-modern {
  background: #2d2d2d;
  color: #ffffff;
  padding: 4rem 0 2rem;
  margin-top: 0;
  overflow-x: hidden;
  width: 100%;
}

.footer-modern .container {
  max-width: 1400px;
  width: 100%;
}

.footer-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.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: 1.5rem;
  flex: 1;
}

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

.footer-column-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
  transition: color 0.2s ease;
  line-height: 1.4;
  text-align: left;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 200px;
  flex-shrink: 0;
  align-items: flex-start;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-bottom-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-icon {
  color: #7c3aed;
  flex-shrink: 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.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;
}

/* Large footer branding */
.footer-branding {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  text-align: center;
  padding: 4rem 0 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.footer-branding-text {
  font-size: 10rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0.1;
  user-select: none;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .footer-branding-text {
    font-size: 8rem;
  }
}

@media (max-width: 768px) {
  .footer-branding-text {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .footer-branding-text {
    font-size: 3.5rem;
  }
}

/* Responsive footer */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .footer-bottom {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
  }

  .footer-bottom-left {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
  }

  .footer-bottom-center {
    align-items: center;
    text-align: center;
    width: 100%;
  }

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

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

  .footer-column {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== 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;
}

/* Removed global checkmark from all list items */
/* 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);
}

/* ===== 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;
}

/* 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 */

/* Modern Integration Cards with Glassmorphic Icons */
.integration-card-modern {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.integration-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.integration-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.integration-card-modern:hover::before {
  opacity: 1;
}

.integration-icon-modern {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.integration-card-modern:hover .integration-icon-modern {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.2);
}

.integration-icon-modern img {
  max-width: 60px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.integration-icon-modern.wix-dark-bg {
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.integration-card-modern .integration-content {
  position: relative;
  z-index: 1;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.integration-card-modern .integration-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  text-shadow: none;
}

.integration-card-modern .integration-description {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
  text-shadow: none;
}

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

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

  .integration-card-modern {
    padding: 1.5rem;
  }

  .integration-icon-modern {
    width: 80px;
    height: 80px;
  }

  .integration-icon-modern img {
    max-width: 50px;
    max-height: 50px;
  }

  .integration-content {
    padding: 1.5rem;
  }

}

/* Footer Comparison Section - Matches existing footer design */
.footer-compare-section {
  background: #2d2d2d;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-compare-section .compare-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.footer-compare-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

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

  .footer-compare-column {
    align-items: center;
  }

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

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ========================================
   SOLUTION PAGE STYLES (JSON-based pages)
   ======================================== */

/* Pain Points Section */
.pain-points-section {
  padding: 5rem 0;
  background: #fde047;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pain-card {
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  overflow: visible;
  max-width: 400px;
  margin: 0 auto;
  background: white;
}

.pain-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pain-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  background: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.pain-card-content {
  padding: 0;
}

.pain-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #1a202c;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.pain-stat {
  font-size: 1rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 0.75rem;
  display: block;
}

.pain-description {
  font-size: 1.0625rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Features Section - Pinterest Masonry Style */
.features-section {
  padding: 5rem 0;
  background: #60a5fa;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* React Carousel Styles - Modern/Avant-Garde Design */
.features-carousel-wrapper {
  width: 100%;
  overflow: visible;
  margin-top: 3rem;
  position: relative;
  padding: 40px 0;
}

.features-carousel-container {
  width: 100%;
  overflow: hidden;
}

.features-carousel-track {
  display: flex;
  gap: 32px;
  will-change: transform;
  align-items: center;
}

.feature-carousel-card {
  flex-shrink: 0;
  width: 380px;
  height: 480px;
  perspective: 2000px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

/* Shape Variations */
.feature-carousel-card.shape-square {
  width: 400px;
  height: 400px;
}

.feature-carousel-card.shape-tall {
  width: 340px;
  height: 520px;
}

.feature-carousel-card.shape-wide {
  width: 480px;
  height: 380px;
}

.feature-carousel-card.shape-circle {
  width: 420px;
  height: 420px;
}

.feature-carousel-card.shape-diamond {
  width: 380px;
  height: 480px;
}

.feature-carousel-card:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .feature-carousel-card {
    width: 300px;
    height: 400px;
  }

  .feature-carousel-card.shape-square,
  .feature-carousel-card.shape-tall,
  .feature-carousel-card.shape-wide,
  .feature-carousel-card.shape-circle,
  .feature-carousel-card.shape-diamond {
    width: 300px;
    height: 400px;
  }
}

.feature-card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  position: relative;
}

.feature-carousel-card.is-flipped .feature-card-inner {
  transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Square shape styling */
.shape-square .feature-card-front,
.shape-square .feature-card-back {
  border-radius: 16px;
}

/* Tall rectangle styling */
.shape-tall .feature-card-front,
.shape-tall .feature-card-back {
  border-radius: 24px;
}

/* Wide rectangle styling */
.shape-wide .feature-card-front,
.shape-wide .feature-card-back {
  border-radius: 20px;
}

.feature-card-front {
  position: relative;
  background: #000;
  border: none;
}

.feature-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card-back .feature-card-content {
  color: white;
}

.feature-card-back .feature-title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card-back .unique-badge {
  background: rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.5);
}

.feature-carousel-card .feature-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.feature-card-front::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.feature-carousel-card .feature-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.feature-card-front .feature-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.feature-card-back .feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.feature-card-front .feature-what {
  display: none;
}

.feature-card-back .feature-what {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

.feature-card-front .unique-badge {
  display: none;
}

.feature-card-back .unique-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.5);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}

.feature-card-back .feature-card-content {
  justify-content: center;
}

.feature-outcome,
.feature-usecase {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-outcome strong,
.feature-usecase strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.embla__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 2rem;
}

.embla__buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.embla__button {
  z-index: 1;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  cursor: pointer;
  border: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.embla__button:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

.embla__button__svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.embla__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
}

.embla__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.embla__dot--selected {
  background: white;
  width: 32px;
  border-radius: 6px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  break-inside: avoid;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.feature-image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #e9ecef;
}

.feature-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-image {
  opacity: 0.95;
}

.feature-content {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Use Cases Section */
.use-cases-section {
  padding: 5rem 0;
  background: #6ee7b7;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.use-case-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
  padding: 3rem;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.use-case-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 2rem;
}

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

.use-case-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.use-case-scenario {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.before-section,
.after-section {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.before-section {
  background: #fee;
  border-left: 4px solid var(--danger-color);
}

.after-section {
  background: #efe;
  border-left: 4px solid var(--success-color);
}

.before-title,
.after-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.before-title {
  color: var(--danger-color);
}

.after-title {
  color: var(--success-color);
}

.result-highlight {
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

.results-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.results-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.results-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Use Case Examples - Instagram Style */
.use-case-examples {
  margin-top: 3rem;
}

.examples-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: left;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.example-tile {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  cursor: pointer;
}

.example-tile:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.example-image-wrapper {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #f0f0f0;
}

.example-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.example-tile:hover .example-image {
  transform: scale(1.05);
}

.example-content {
  padding: 1.25rem;
}

.example-caption {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.example-trigger-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(102, 126, 234, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(102, 126, 234, 0.3);
  margin-bottom: 0.75rem;
}

.example-action {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.example-action .iconify {
  flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
  border-color: #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  background: transparent;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  gap: 1.5rem;
}

.faq-question:hover {
  color: #667eea;
}

.faq-question[aria-expanded="true"] {
  color: #667eea;
  padding-bottom: 1rem;
}

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #667eea;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-icon .iconify {
  font-size: 28px;
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 0 2rem 2rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* CTA Section - Clean Gray */
.cta-section {
  padding: 5rem 0;
  background: #ec4899;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cta-content-centered {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

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

.cta-trust {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .use-case-card {
    grid-template-columns: 1fr;
  }

  .use-case-image {
    position: relative;
    height: 300px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 6rem 0 3rem;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-content-wrapper {
    max-width: 100%;
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pain-points-section,
  .features-section,
  .use-cases-section,
  .faq-section,
  .cta-section {
    padding: 3rem 0;
  }

  .feature-title {
    font-size: 1rem;
  }

  .use-case-title {
    font-size: 1.5rem;
  }

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

  .examples-list {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   MODERN FEATURE COMPARISON SECTION
   =================================== */

.feature-comparison-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.feature-comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.section-title-centered {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.feature-comparison-section .section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Modern Comparison Table */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid rgba(102, 126, 234, 0.1);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

/* Table Header */
.comparison-table thead {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
  position: relative;
}

.comparison-table thead::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0.3;
}

.comparison-table th {
  padding: 1.75rem 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  position: relative;
  border-bottom: none;
}

.comparison-table th:first-child {
  text-align: left;
  border-top-left-radius: 24px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.comparison-table th:last-child {
  border-top-right-radius: 24px;
}

/* Highlight middle column (Pro plan) */
.comparison-table th:nth-child(3) {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  position: relative;
}

.comparison-table th:nth-child(3)::before {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  white-space: nowrap;
}

/* Table Body */
.comparison-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(229, 231, 235, 0.4);
}

.comparison-table tbody tr:hover {
  background: rgba(102, 126, 234, 0.02);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 24px;
}

.comparison-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 24px;
}

.comparison-table td {
  padding: 1.5rem 2rem;
  border-bottom: none;
}

/* Feature Name Column */
.feature-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
  text-align: left;
}

/* Value Columns */
.feature-value {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Highlight Pro column */
.comparison-table tbody td:nth-child(3) {
  background: rgba(102, 126, 234, 0.02);
}

/* Checkmarks and Values */
.check-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.check-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #cbd5e0;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Feature Highlight Rows */
.comparison-table tbody tr:nth-child(3n) {
  background: rgba(102, 126, 234, 0.015);
}

/* Alternating Column Styles for Better Readability */
.comparison-table td:nth-child(2),
.comparison-table th:nth-child(2) {
  background: rgba(249, 250, 251, 0.5);
}

.comparison-table td:nth-child(4),
.comparison-table th:nth-child(4) {
  background: rgba(249, 250, 251, 0.5);
}

/* Add subtle animation on hover */
.comparison-table tbody tr:hover .check-yes {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(72, 187, 120, 0.4);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .comparison-table-wrapper {
    border-radius: 16px;
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem 1rem;
    font-size: 0.875rem;
  }

  .comparison-table th:nth-child(3)::before {
    font-size: 0.65rem;
    padding: 0.25rem 0.75rem;
    top: -10px;
  }

  .section-title-centered {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .feature-comparison-section {
    padding: 4rem 0;
  }

  .comparison-table-wrapper {
    border-radius: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.875rem 0.75rem;
    font-size: 0.8125rem;
  }

  .feature-name {
    font-size: 0.875rem;
  }

  .check-yes,
  .check-no {
    width: 24px;
    height: 24px;
    font-size: 0.875rem;
  }

  .section-title-centered {
    font-size: 2.25rem;
  }

  .comparison-table th:nth-child(3)::before {
    display: none;
  }

  /* Add mobile badge alternative */
  .comparison-table th:nth-child(3)::after {
    content: '⭐';
    margin-left: 0.25rem;
  }
}

/* ===================================
   PRICING PAGE HERO OVERRIDE
   =================================== */

/* Smaller, cleaner hero for pricing page */
body:has(.pricing-card-section) .hero-section {
  min-height: 500px;
  padding: 8rem 0 4rem;
  background: url('/img/pricing_hero.jpeg') center center / cover no-repeat;
  position: relative;
}

body:has(.pricing-card-section) .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

body:has(.pricing-card-section) .hero-section .container {
  position: relative;
  z-index: 2;
}

body:has(.pricing-card-section) .hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

body:has(.pricing-card-section) .hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  text-align: center;
}

body:has(.pricing-card-section) .hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-align: center;
}

body:has(.pricing-card-section) .testimonials-row {
  margin-top: 2rem;
}

body:has(.pricing-card-section) .testimonial-rating span {
  color: var(--text-secondary);
}

body:has(.pricing-card-section) .trust-badge-item {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

body:has(.pricing-card-section) .trust-badge-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Homepage Hero with Background Image */
.homepage-hero {
  position: relative;
  min-height: 600px;
  height: 900px;
  display: flex;
  align-items: center;
  padding: 0 !important;
}

.homepage-hero .hero-bg {
  z-index: 0;
}

.homepage-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.homepage-hero .container {
  position: relative;
  z-index: 2;
}

.homepage-hero .hero-content-wrapper {
  max-width: 900px;
  margin: 0;
}

.homepage-hero .hero-content {
  text-align: left;
}

.homepage-hero .hero-title {
  text-align: left;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
  font-size: 4.5rem;
  font-weight: 900;
}

.homepage-hero .hero-subtitle {
  text-align: left;
  max-width: 700px;
  margin-left: 0;
  margin-right: 0;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.4);
  font-size: 1.375rem;
  font-weight: 500;
}

.homepage-hero .hero-cta-section {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Trust Badges for Pricing Hero */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-start;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  padding: 0 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #000000;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-shadow: none;
  white-space: nowrap;
}

.trust-badge-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trust-badge-item .badge-icon {
  color: #48bb78;
  flex-shrink: 0;
}

.trust-badge-item.meta-badge {
  padding: 0 1.25rem;
  background: transparent;
  width: 240px;
  border: none;
  box-shadow: none;
}

.trust-badge-item.meta-badge:hover {
  background: transparent;
  transform: none;
}

.meta-tech-provider-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
}

@media (max-width: 768px) {
  body:has(.pricing-card-section) .hero-section {
    padding: 4rem 0 2rem;
  }

  body:has(.pricing-card-section) .hero-title {
    font-size: 2rem;
  }

  body:has(.pricing-card-section) .hero-subtitle {
    font-size: 1rem;
  }

  .trust-badges-row {
    gap: 0.75rem;
  }

  .trust-badge-item {
    font-size: 0.8125rem;
    width: 200px;
    height: 42px;
    padding: 0 1rem;
  }

  .trust-badge-item.meta-badge {
    width: 200px;
    padding: 0 1rem;
  }

  .meta-tech-provider-logo {
    height: 22px;
  }

  .trust-badge-item .badge-icon {
    width: 16px;
    height: 16px;
  }
}

/* ===================================
   MODERN LANDING PAGE SECTIONS
   =================================== */

/* Section Headers - Landing Page */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #000000;
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

/* Problem Section - Modern Design */
.problem-section {
  padding: 6rem 0;
  background: #880020;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.pain-card {
  background: white;
  border-radius: 24px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
}

.pain-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #7c3aed;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pain-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.pain-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pain-card:hover .pain-image {
  transform: scale(1.05);
}

.pain-content {
  padding: 2rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pain-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.pain-stat {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pain-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
}

.trust-signal-banner {
  margin-top: 4rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.trust-signal-banner .approved-badge {
  flex-shrink: 0;
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.trust-signal-banner .approved-badge:hover {
  transform: scale(1.05);
}

.trust-signal-banner .trust-text {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-signal-banner .meta-tech-provider {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.trust-signal-banner .meta-tech-provider:hover {
  transform: scale(1.05);
}

.trust-signal-banner .trust-icon {
  display: none;
}

.trust-signal-banner p {
  display: none;
}

/* Solution Section - Modern Design */
.solution-section {
  padding: 6rem 0;
  background: #7dd3fc;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  border-radius: 24px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
}

.benefit-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin: 0;
  position: relative;
}

.benefit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-image {
  transform: scale(1.05);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: 2rem 2rem 0 2rem;
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #7c3aed;
  line-height: 1;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.benefit-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.75rem;
  padding: 0 2rem;
}

.benefit-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  padding: 0 2rem 2.5rem 2rem;
}

/* Features Section - Modern Design */
.features-section {
  padding: 6rem 0;
  background: #60a5fa;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, #2d2d2d 0%, #1f1f1f 100%);
  border-radius: 24px;
  padding: 0;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 280px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.feature-card.feature-unique {
  background: linear-gradient(135deg, #3d2d4d 0%, #2d1f3d 100%);
}

.feature-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-content {
  padding: 3rem 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.unique-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.5rem 1rem;
  background: #7c3aed;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.feature-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.feature-what {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.feature-outcome {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.feature-usecase {
  font-style: italic;
  color: #a8b3ff;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Creator Types Section - Modern Design */
.use-cases-section {
  padding: 6rem 0;
  background: #6ee7b7;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.creator-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.creator-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.creator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.creator-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  color: #667eea;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.creator-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.creator-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 1rem;
}

.creator-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.creator-meta {
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.creator-perfect-for,
.creator-result {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.creator-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #667eea;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.creator-cta:hover {
  gap: 0.75rem;
  color: #764ba2;
}

/* Advanced Features Section */
.advanced-features-section {
  padding: 6rem 0;
  background: #a78bfa;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.advanced-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advanced-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.advanced-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.advanced-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.advanced-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.75rem;
}

.advanced-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.final-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.final-cta-buttons {
  margin-bottom: 3rem;
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

.final-trust-elements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.trust-element {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.trust-element .trust-check {
  flex-shrink: 0;
  color: #10b981;
}

/* Creator Card Images */
.creator-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.creator-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.creator-card:hover .creator-image {
  transform: scale(1.05);
}

/* Differentiators Section - What Makes CreatorFlow Different */
.differentiators-section {
  padding: 6rem 0;
  background: #f9a8d4;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.differentiator-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.differentiator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.differentiator-card.large-card {
  padding: 3rem 2.5rem;
}

.unique-badge-large {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #7c3aed;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.differentiator-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.differentiator-what {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.differentiator-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.differentiator-features li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.differentiator-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
  font-size: 1.125rem;
}

/* Differentiator Card Images */
.differentiator-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.differentiator-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.differentiator-card:hover .differentiator-image {
  transform: scale(1.05);
}

/* Advanced Card Images */
.advanced-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.advanced-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.advanced-card:hover .advanced-image {
  transform: scale(1.05);
}

/* Stats Section - Our Story in Numbers */
.stats-section {
  padding: 6rem 0;
  background: #fb923c;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.stats-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #000000;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.15);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #7c3aed;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.75rem;
}

.stat-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-top: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .homepage-hero .hero-title {
    font-size: 2.5rem;
  }

  .homepage-hero .hero-subtitle {
    font-size: 1.125rem;
  }

  .pain-grid,
  .benefits-grid,
  .feature-grid,
  .creator-types-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pain-card,
  .benefit-card,
  .creator-card,
  .advanced-card {
    padding: 2rem 1.5rem;
  }

  .feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .feature-card-image {
    height: 250px;
  }

  .feature-card-content {
    padding: 2rem 1.5rem;
  }

  .feature-title {
    font-size: 1.5rem;
  }

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

  .final-cta-subtitle {
    font-size: 1.125rem;
  }

  .trust-signal-banner {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .creator-image-wrapper,
  .advanced-image-wrapper {
    height: 180px;
  }

  .differentiator-image-wrapper {
    height: 200px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .stats-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1.125rem;
  }
}