
/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.nav-logo .logo-img {
  width: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-cta-button {
    background: linear-gradient(90deg, var(--blue-600), var(--indigo-600));
    color: var(--white);
    font-size: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    box-shadow: var(--shadow-lg), 0 8px 16px rgba(255, 10, 47, 0.2);
    letter-spacing: 0.025em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    transform: translateY(0);
  }
  
  .nav-cta-button:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl), 0 12px 24px rgba(255, 10, 47, 0.25);
  }
  
  .nav-cta-button svg {
    transition: transform 0.3s;
  }
  
  .nav-cta-button:hover svg.sparkles {
    transform: rotate(12deg);
  }
  
  .nav-cta-button:hover svg.chevron-right {
    transform: translateX(0.25rem);
  }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark-bg-primary);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
  gap: 2rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.mobile-menu .mobile-logo {
  margin-bottom: 2rem;
}

.mobile-menu .mobile-logo img {
  width: 80px;
  height: auto;
}

.mobile-menu .menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
  margin-top: -8rem;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu .nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-800);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu .nav-link:hover {
  color: var(--blue-600);
}

.mobile-menu .nav-cta-button {
  background: linear-gradient(90deg, var(--blue-600), var(--indigo-600));
  color: var(--white);
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  box-shadow: var(--shadow-lg), 0 8px 16px rgba(255, 10, 47, 0.2);
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  transform: translateY(0);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.mobile-menu .nav-cta-button:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-xl), 0 12px 24px rgba(255, 10, 47, 0.25);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-container {
    padding: 1rem;
  }
}
  
  :root {
    --blue-50: #e6f1fe;
    --blue-100: #cce3fc;
    --blue-600: #2563eb;
    --indigo-600: #4f46e5;
    --slate-500: #6b7280;
    --slate-600: #4b5563;
    --slate-700: #374151;
    --slate-800: #1f2937;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --amber-400: #fbbf24;
    --red-400: #f87171;
    --yellow-400: #facc15;
    --white: #ffffff;
    --black: #000000;
    
    --font-poppins: 'Poppins', sans-serif;
    --font-inter: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --border-radius-sm: 0.125rem;
    --border-radius: 0.25rem;
    --border-radius-md: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-xl: 0.75rem;
    --border-radius-2xl: 1rem;
    --border-radius-3xl: 1.5rem;
    --border-radius-full: 9999px;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-inter);
    color: var(--slate-800);
    background-color: var(--white);
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-poppins);
    font-weight: 700;
    line-height: 1.2;
  }
  
  p {
    margin: 0;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-blue {
    color: var(--blue-600);
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  /* Responsive utilities */
  .desktop-only {
    display: block;
  }
  
  .mobile-only {
    display: none;
  }
  
  /* Animation keyframes */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes scaleIn {
    from {
      transform: scale(0.95);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 0 10px rgba(255, 10, 47, 0.1);
    }
    50% {
      box-shadow: 0 0 20px rgba(255, 10, 47, 0.2);
    }
  }
  
  /* Announcement Bar */
  .announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--blue-600), var(--indigo-600));
    color: var(--white);
    padding: 0.5rem;
    z-index: 50;
  }
  
  .announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.875rem;
  }
  
  .countdown {
    display: flex;
    margin-top: 0.25rem;
  }
  
  .countdown-box {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(to bottom right, var(--blue-50), var(--white));
    overflow: hidden;
  }
  
  .hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
  }
  
  .brand-logo {
    position: absolute;
    top: 4rem;
    left: 1.5rem;
    z-index: 10;
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: var(--blue-600);
  }
  
  .background-elements {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  
  .blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(3rem);
  }
  
  .blur-circle-1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background-color: var(--blue-50);
  }
  
  .blur-circle-2 {
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background-color: var(--blue-100);
  }
  
  .blur-circle-3 {
    top: 33%;
    right: 33%;
    width: 16rem;
    height: 16rem;
    background-color: var(--blue-50);
  }
  
  .abstract-circle {
    position: absolute;
    border: 4px solid var(--blue-100);
    border-radius: 50%;
    opacity: 0.2;
  }
  
  .abstract-circle-1 {
    top: 2.5rem;
    right: 2.5rem;
    height: 8rem;
    width: 8rem;
  }
  
  .abstract-circle-2 {
    bottom: 5rem;
    left: 5rem;
    height: 12rem;
    width: 12rem;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .hero-badge {
    padding: 0.5rem 1rem;
    background-color: var(--blue-100);
    color: var(--blue-600);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .hero-title {
    font-size: 4rem;
    margin-bottom: 0.75rem;
    color: var(--slate-800);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }
  
  .highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  
  .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background-color: var(--blue-100);
    z-index: -1;
  }
  
  .hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--slate-700);
    max-width: 48rem;
  }
  
  .hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--slate-600);
    max-width: 32rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1.5rem;
  }
  
  .hero-laptop {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  @media (max-width: 768px) {
    .hero-container {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
    
    .hero-content {
      align-items: center;
      text-align: center;
    }
    
    .cta-container {
      align-items: center;
    }
    
    .hero-section {
      padding: 6rem 1rem 2rem;
      min-height: auto;
    }
    .hero-title{
      font-size: 2.5rem;
    }
    .hero-description{
      font-size: 1rem;
    }
  }
  
  .cta-button {
    background: linear-gradient(90deg, var(--blue-600), var(--indigo-600));
    color: var(--white);
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    box-shadow: var(--shadow-lg), 0 8px 16px rgba(255, 10, 47, 0.2);
    letter-spacing: 0.025em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    transform: translateY(0);
  }
  
  .cta-button:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl), 0 12px 24px rgba(255, 10, 47, 0.25);
  }
  
  .cta-button svg {
    transition: transform 0.3s;
  }
  
  .cta-button:hover svg.sparkles {
    transform: rotate(12deg);
  }
  
  .cta-button:hover svg.chevron-right {
    transform: translateX(0.25rem);
  }
  
  .cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--slate-500);
  }
  
  .hero-footer {
    position: absolute;
    bottom: 3rem;
    width: 100%;
    text-align: center;
  }
  
  .hero-footer p {
    color: var(--slate-500);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  
  /* Laptop Visual Section */
  .laptop-section {
    position: relative;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(180deg, var(--white), var(--gray-50));
  }
  
  .laptop-visual {
    position: relative;
    width: 100%;
    max-width: 32rem;
    margin: 2.5rem auto;
  }
  
  .browser-ui {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 0.75rem;
  }
  
  .browser-dots {
    display: flex;
    gap: 0.5rem;
  }
  
  .browser-dot {
    height: 0.75rem;
    width: 0.75rem;
    border-radius: 50%;
  }
  
  .browser-dot.red {
    background-color: var(--red-400);
  }
  
  .browser-dot.yellow {
    background-color: var(--yellow-400);
  }
  
  .browser-dot.green {
    background-color: var(--green-500);
  }
  
  .browser-address {
    margin: 0 0.5rem;
    flex: 1;
    height: 1.5rem;
    background-color: var(--gray-100);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .browser-address span {
    font-size: 0.75rem;
    color: var(--slate-500);
  }
  
  .laptop-content {
    position: relative;
    z-index: 10;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    transform: perspective(1200px) rotateX(5deg);
  }
  
  .laptop-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  
  .client-portal {
    height: 2rem;
    background: linear-gradient(90deg, var(--blue-600), var(--indigo-600));
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .dashboard-text {
    font-size: 0.875rem;
    color: var(--slate-500);
  }
  
  .performance-card {
    background-color: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .performance-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }
  
  .performance-header h3 {
    font-weight: 700;
    color: var(--slate-800);
    font-size: 1rem;
  }
  
  .live-badge {
    background-color: var(--green-100, #dcfce7);
    color: var(--green-700);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 500;
  }
  
  .performance-stats {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
  }
  
  .performance-stats svg {
    color: var(--green-500);
    margin-right: 0.5rem;
  }
  
  .stats-text {
    font-weight: 500;
    color: var(--green-700);
  }
  
  .stats-period {
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-left: 0.5rem;
  }
  
  .metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 0.5rem 0;
  }
  
  .metric-card {
    background-color: var(--gray-50);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
  }
  
  .metric-card h4 {
    font-weight: 500;
    color: var(--slate-700);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
  
  .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
  }
  
  .metric-trend {
    font-size: 0.75rem;
    color: var(--green-600);
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
  }
  
  .metric-trend svg {
    margin-right: 0.25rem;
  }
  
  .optimizations-card {
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius-lg);
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .optimizations-card h4 {
    font-weight: 500;
    color: var(--slate-700);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  
  .optimizations-list {
    list-style-type: none;
  }
  
  .optimizations-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
  }
  
  .optimizations-list svg {
    color: var(--green-500);
    margin-right: 0.5rem;
    flex-shrink: 0;
  }
  
  .optimizations-list span {
    font-size: 0.875rem;
    color: var(--slate-600);
  }
  
  .conversion-card {
    padding: 1rem;
    background-color: var(--blue-50);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--blue-100);
    margin-top: 1.5rem;
  }
  
  .conversion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .conversion-title {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue-600);
  }
  
  .conversion-title svg {
    margin-right: 0.25rem;
  }
  
  .conversion-rate {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blue-600);
  }
  
  .progress-bar {
    height: 0.5rem;
    background-color: var(--gray-200);
    border-radius: var(--border-radius-full);
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    width: 72%;
    background: linear-gradient(90deg, var(--blue-600), var(--indigo-600));
    border-radius: var(--border-radius-full);
  }
  
  .conversion-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }
  
  .industry-avg {
    color: var(--slate-500);
  }
  
  .your-website {
    font-weight: 500;
    color: var(--blue-600);
  }
  
  .laptop-base {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 0.5rem;
    background-color: var(--gray-300);
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
  }
  
  .laptop-shadow {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 66.67%;
    height: 1rem;
    background-color: var(--gray-200);
    border-radius: var(--border-radius-full);
    filter: blur(0.375rem);
    opacity: 0.7;
  }
  
  /* Feature Section */
  .feature-section {
    padding: 4rem 1.5rem;
    padding-bottom: 6rem;
    background-color: var(--white);
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--slate-800);
  }
  
  .section-header p {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 36rem;
    margin: 0 auto;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
  }
  
  .feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
  }
  
  .feature-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-xl);
  }
  
  .feature-icon {
    background-color: var(--blue-50);
    color: var(--blue-600);
    width: fit-content;
    padding: 0.75rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
  }
  
  .feature-card p {
    color: var(--slate-600);
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 5rem 1.5rem;
    background-color: var(--blue-50);
    overflow: hidden;
  }
  
  .section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--blue-100);
    color: var(--blue-600);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .testimonial-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
  }
  
  .testimonial-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    width: calc(200% + 1.5rem);
  }
  
  .testimonial-track:hover {
    animation-play-state: paused;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 0.75rem));
    }
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 72rem;
    margin: 0 auto;
  }
  
  .testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    min-height: 16rem;
    transition: all 0.3s;
    max-width: 300px;
    flex-shrink: 0;
    position: relative;
  }

  .quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--blue-100), var(--indigo-100));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
  }

  .quote-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--blue-600);
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  
  .stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--amber-400);
  }
  
  .testimonial-quote {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--slate-700);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius-full);
    background-color: var(--blue-100);
    color: var(--blue-600);
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .author-info {
    display: flex;
    flex-direction: column;
  }
  
  .author-name {
    font-weight: 700;
    color: var(--slate-800);
  }
  
  .author-role {
    font-size: 0.875rem;
    color: var(--slate-500);
  }
  
  /* Mobile testimonial slider */
  .testimonial-slider {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
  }
  
  .testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-out forwards;
  }
  
  .testimonial-slide.active {
    display: block;
  }
  
  .testimonial-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  
  .pagination-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--blue-200, #bfdbfe);
    transition: background-color 0.3s;
  }
  
  .pagination-dot.active {
    background-color: var(--blue-600);
  }
  
  .testimonial-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
  }
  
  .control-button {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--blue-600);
    border-radius: var(--border-radius-full);
    padding: 0.5rem;
    box-shadow: var(--shadow-md);
    pointer-events: auto;
    transition: background-color 0.3s;
  }
  
  .control-button:hover {
    background-color: var(--white);
  }
  
  /* Bonus Section */
  .bonus-section {
    padding: 5rem 1.5rem;
    background-color: var(--white);
  }
  
  .section-divider {
    width: 5rem;
    height: 0.25rem;
    background-color: var(--blue-600);
    margin: 2rem auto;
  }
  
  .value-props-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
  }
  
  .value-prop-card {
    display: flex;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
  }
  
  .value-prop-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-0.25rem);
  }
  
  .value-prop-icon {
    margin-right: 1rem;
    color: var(--blue-600);
    flex-shrink: 0;
    margin-top: 0.25rem;
  }
  
  .value-prop-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--slate-800);
  }
  
  .value-prop-content p {
    color: var(--slate-600);
  }
  
  .cta-link-container {
    text-align: center;
    margin-top: 4rem;
  }
  
  .cta-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--blue-600);
    transition: color 0.3s;
  }
  
  .cta-link:hover {
    color: var(--blue-800, #1e40af);
  }
  
  .cta-link svg {
    margin-left: 0.5rem;
    transition: transform 0.3s;
  }
  
  .cta-link:hover svg {
    transform: translateX(0.25rem);
  }
  
  /* Calendly Section */
  .calendly-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(180deg, var(--black), var(--blue-50));
    position: relative;
  }
  
  .calendly-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--blue-100);
    color: var(--blue-600);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .calendly-container {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .benefit-badge {
    position: absolute;
    background-color: var(--white);
    padding: 0.75rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .benefit-badge-1 {
    top: 1rem;
    left: -1rem;
    transform: rotate(3deg);
  }
  
  .benefit-badge-2 {
    bottom: 2.5rem;
    right: -0.5rem;
    transform: rotate(-2deg);
  }
  
  .benefit-badge svg {
    color: var(--amber-400);
  }
  
  .benefit-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
  }
  
  .calendly-widget {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
    padding: 1rem 2rem;
    position: relative;
    z-index: 0;
    transition: transform 0.3s;
  }
  
  .calendly-widget:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-2xl);
  }
  
  .calendly-inline-widget {
    height: 700px;
  }
  
  .post-calendly-cta {
    margin-top: 2.5rem;
  }
  
  .post-calendly-cta p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 1.5rem;
  }
  
  .calendly-cta {
    margin: 0 auto;
  }
  
  /* Navigation */
  .navigation {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 50;
    padding: 1rem 0;
  }
  
  .nav-container {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0rem;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-link {
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-lg);
  }
  
  .nav-link:hover {
    color: var(--blue-600);
    background-color: var(--blue-50);
  }
  
  /* How It Works Section */
  .how-it-works-section {
    padding: 6rem 0rem;
    background-color: var(--white);
  }
  
  .how-it-works-container {
    max-width: 72rem;
    margin: 0 auto;
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
  }
  
  .steps-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    transform: translateX(-50%);
    z-index: 0;
  }
  
  .step-card {
    text-align: center;
    position: relative;
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-200);
  }
  
  .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 10, 47, 0.3);
  }
  
  .step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .step-card p {
    color: var(--slate-600);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 24rem;
    margin: 0 auto;
  }
  
  /* Timeline Cards */
  .timeline-container {
     position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
  }
  
  .timeline-card {
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    position: relative;
    max-width: 560px;
  }

  .timeline-card:nth-child(odd) {
    align-self: flex-start;
    margin-right: calc(50% - 560px);
  }

  .timeline-card:nth-child(even) {
    align-self: flex-end;
    margin-left: calc(50% - 560px);
  }

  .timeline-card .card-number {
    position: absolute;
    top: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .timeline-card:nth-child(odd) .card-number {
    right: -2.5rem;
  }

  .timeline-card:nth-child(even) .card-number {
    left: -2.5rem;
  }
  
  .timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }

  .timeline-image{
    height: 100%;
    width: auto;
    object-fit: contain;
  }
  
  .card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(255, 10, 47, 0.3);
  }
  
  .timeline-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  .timeline-card p {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .card-image-placeholder {
    width: 100%;
    height: 160px;
    background: var(--gray-50);
    
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .timeline-card:hover .card-image-placeholder {
    background: var(--gray-100);
    border-color: var(--gray-300);
  }
  
  .placeholder-icon {
    height: 100%;
    color: var(--gray-400);
    transition: all 0.3s ease;
  }
  
  .timeline-card:hover .placeholder-icon {
    color: var(--gray-500);
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .timeline-container {
      gap: 1.5rem;
    }

    .timeline-container::before{
      left: unset;
    }

    .timeline-card {
      padding: 1.5rem;
      max-width: 100%;
      margin: 0;
      align-self: stretch;
    }

    .timeline-card .card-number {
      position: static;
      margin-bottom: 1rem;
    }

    .card-image-placeholder {
      height: 120px;
    }
  }
  
  /* What's Included Section */
  .whats-included-section {
    padding: 6rem 1.5rem;
    background-color: var(--gray-50);
  }
  
  .whats-included-container {
    max-width: 72rem;
    margin: 0 auto;
  }
  
  .included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .included-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .included-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-600), var(--indigo-600));
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  
  .included-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-200);
  }
  
  .included-card:hover::before {
    transform: scaleX(1);
  }
  
  .included-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--blue-100), var(--indigo-100));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .included-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--blue-600);
  }
  
  .included-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  
  .included-card p {
    color: var(--slate-600);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  /* Why Creators Choose Us Section */
  .why-creators-section {
    padding: 6rem 1.5rem;
    background-color: var(--white);
  }
  
  .why-creators-container {
    max-width: 72rem;
    margin: 0 auto;
  }
  
  .credibility-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }
  
  .stat-label {
    color: var(--slate-600);
    font-weight: 500;
    font-size: 0.95rem;
  }
  
  .trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
  }
  
  .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
    font-weight: 500;
    color: var(--slate-700);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
  }
  
  .trust-badge:hover {
    transform: translateY(-2px);
    border-color: var(--blue-200);
    background-color: var(--blue-50);
    box-shadow: var(--shadow-md);
  }
  
  .trust-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--blue-600);
  }
  
  /* Free Mockup Section */
  .free-mockup-section {
    padding: 6rem 1.5rem;
    color: var(--white);
    text-align: center;
  }
  
  .free-mockup-container {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .free-mockup-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
  }
  
  .free-mockup-section p {
    color: var(--blue-100);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  .video-thumbnail {
    position: relative;
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    margin: 2rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
  }
  
  .video-thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  }
  
  .play-button {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 10, 47, 0.3);
  }
  
  .video-thumbnail p {
    color: var(--slate-600);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .calendly-embed {
    display: none;
    margin-top: 2rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }
  
  .calendly-embed.active {
    display: block;
  }
  
  /* New Pricing Section */
  .new-pricing-section {
    padding: 80px 0;
    background: #0a0a0a;
    color: white;
  }
  
  .pricing-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .pricing-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .highlight-text {
    background: linear-gradient(135deg, #ff0a2f, #b2061c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .pricing-header > p {
    font-size: 18px;
    color: #a1a1aa;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff0a2f;
    font-weight: 500;
  }
  
  .benefit-item svg {
    color: #ff0a2f;
  }
  
  .pricing-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .stars {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .stars svg {
    color: #fbbf24;
  }
  
  .review-count {
    font-weight: 600;
    color: white;
  }
  
  .trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #a1a1aa;
  }
  
  .new-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .new-pricing-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .new-pricing-card:hover {
    transform: translateY(-5px);
    border-color: #ff0a2f;
    box-shadow: 0 20px 40px rgba(255, 10, 47, 0.1);
  }
  
  .new-pricing-card.featured {
    border: 2px solid #ff0a2f;
    background: linear-gradient(135deg, rgba(255, 10, 47, 0.1), rgba(178, 6, 28, 0.05));
  }
  
  .popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff0a2f;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
  }
  
  .most-popular-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 10, 47, 0.2);
    color: #ff0a2f;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0a2f, #b2061c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
  }
  
  .new-pricing-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
  }
  
  .card-description {
    font-size: 16px;
    color: #a1a1aa;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .card-details {
    font-size: 14px;
    color: #71717a;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  
  .card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 30px;
  }
  
  .price-amount {
    font-size: 38px;
    font-weight: 700;
    color: white;
  }
  
  .price-original {
    font-size: 24px;
    color: #71717a;
    text-decoration: line-through;
  }
  
  .price-period {
    font-size: 16px;
    color: #a1a1aa;
  }
  
  .card-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #ff0a2f, #b2061c);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
  }
  
  .card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 10, 47, 0.3);
  }
  
  .card-button.featured {
    background: linear-gradient(135deg, #b2061c, #ff0a2f);
  }
  
  .card-features {
    border-top: 1px solid #333;
    padding-top: 30px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #a1a1aa;
    font-size: 14px;
  }
  
  .feature-item svg:first-child {
    color: #71717a;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .feature-item svg:last-child {
    color: #ff0a2f;
    flex-shrink: 0;
  }
  
  .view-all-features {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    color: #ff0a2f;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }
  
  .view-all-features:hover {
    color: #b2061c;
  }
  
  .enterprise-section {
    margin-top: 40px;
  }
  
  .enterprise-card {
    background: linear-gradient(135deg, rgba(255, 10, 47, 0.1), rgba(178, 6, 28, 0.05));
    border: 1px solid #ff0a2f;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    align-items: center;
  }
  
  .enterprise-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .enterprise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff0a2f, #b2061c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
  }
  
  .enterprise-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
  }
  
  .enterprise-text p {
    color: #a1a1aa;
    margin-bottom: 8px;
    line-height: 1.5;
  }
  
  .enterprise-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .enterprise-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a1a1aa;
    font-size: 14px;
  }
  
  .enterprise-feature svg {
    color: var(--dark-accent-red);
    flex-shrink: 0;
  }
  
  .enterprise-button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .enterprise-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .pricing-header h2 {
      font-size: 36px;
    }
    
    .pricing-benefits {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    
    .pricing-reviews {
      flex-direction: column;
      gap: 20px;
    }
    
    .new-pricing-grid {
      grid-template-columns: 1fr;
    }
    
    .enterprise-card {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .enterprise-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
  
  /* Legacy Pricing Section (keeping for compatibility) */
  .pricing-section {
    padding: 6rem 1.5rem;
    background-color: var(--gray-50);
  }
  
  .pricing-container {
    max-width: 72rem;
    margin: 0 auto;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .pricing-card {
    background-color: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  
  .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-300);
  }
  
  .pricing-card.featured {
    border-color: var(--blue-500);
    background: linear-gradient(135deg, var(--blue-50), var(--indigo-50));
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
  }
  
  .pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
  }
  
  .pricing-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  
  .pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
    line-height: 1.1;
  }
  
  .pricing-period {
    color: var(--slate-500);
    font-size: 1rem;
    font-weight: 500;
  }
  
  .pricing-features {
    margin-bottom: 2rem;
  }
  
  .pricing-features ul {
    list-style: none;
    padding: 0;
  }
  
  .pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--slate-600);
    font-size: 0.95rem;
  }
  
  .pricing-features svg {
    color: var(--green-500);
    margin-right: 0.75rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
  }
  
  .pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--slate-800);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  
  .pricing-button:hover {
    background-color: var(--slate-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
  }
  
  .pricing-button.featured {
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    box-shadow: var(--shadow-lg);
  }
  
  .pricing-button.featured:hover {
    background: linear-gradient(135deg, var(--blue-700), var(--indigo-700));
    box-shadow: var(--shadow-xl);
  }
  
  /* Footer */
  .footer {
    padding: 1.5rem;
    background-color: var(--white);
    border-top: 1px solid var(--gray-100);
  }
  
  .footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 2rem;
  }
  
  .footer-brand {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .brand-name {
    font-size: 1.2rem;
    font-family: var(--font-poppins);
    font-weight: 700;
    letter-spacing: 0.025em;
    color: var(--slate-800);
  }
  
  .brand-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-500);
    margin-top: 0.25rem;
  }
  
  .footer-nav {
    margin-bottom: 2rem;
  }
  
  .footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .footer-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .footer-nav-link {
    color: var(--slate-600);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
  }
  
  .footer-nav-link:hover {
    color: var(--blue-600);
  }
  
  .footer-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  
  .footer-link {
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  
  .footer-link:hover {
    color: var(--blue-600);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-link {
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
  }
  
  .social-link:hover {
    color: var(--blue-600);
  }
  
  .social-name {
    display: none;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.875rem;
    color: var(--slate-500);
  }
  
  .copyright {
    margin-bottom: 1rem;
  }
  
  .legal-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .legal-link {
    transition: color 0.3s;
  }
  
  .legal-link:hover {
    color: var(--blue-600);
  }
  
  /* Responsive styles */
  @media (min-width: 640px) {
    .announcement-content {
      flex-direction: row;
      gap: 1rem;
    }
    
    .countdown {
      margin-top: 0;
    }
    
    .value-props-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    
    .container {
      padding: 0 3rem;
    }
    
    .hero-content {
      margin-top: 0;
    }
    
    .feature-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .mobile-only {
      display: none;
    }
    
    .testimonial-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .included-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .credibility-stats {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.featured {
      transform: scale(1.05);
    }
    
    .footer-main {
      flex-direction: row;
      text-align: left;
      align-items: flex-start;
      justify-content: space-between;
      gap: 3rem;
    }
    
    .footer-brand {
      margin-bottom: 0;
      text-align: left;
    }
    
    .footer-main {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
    }
    
    .footer-nav {
      margin-bottom: 0;
    }
    
    .footer-section h4 {
      text-align: left;
    }
    
    .footer-nav-links {
      align-items: flex-start;
    }
    
    .footer-contact {
      flex-direction: row;
      align-items: center;
    }
    
    .social-name {
      display: inline;
    }
    
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
    
    .copyright {
      margin-bottom: 0;
    }
  }
  
  @media (min-width: 1024px) {
    .testimonial-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .benefit-badge-1 {
      left: auto;
      right: -2rem;
      top: 2rem;
    }
    
    .benefit-badge-2 {
      right: auto;
      left: -1.5rem;
      bottom: 2.5rem;
    }
    
    .included-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .nav-links {
      gap: 3rem;
    }
  }
  











:root {
    --veltech-purple: #ff0a2f;
    --text: #96aabe;
    --titles-links: white;
    --veltech-blue: #ff0a2f;
    --veltech-grey: #233141;
    --teal-500: #ff0a2f;
    --teal-700: #ff0a2f;

    --red-500: #ef4848;
    --slate-300: #cbd5e1;
    --teal-400: #ff0a2f;


    --pink-400: #f472b6;
    --neutral-600: #2f363d;
    --gray-500: #6b7380;
    --slate-700: #334255;
    --gray-50: #f9fafb;
    --teal-600: #ff0a2f;
    --teal-300: #ff0a2f;

}

  /* Formula (Two-Plan) Section */
  .formula-section {
    padding: 5rem 1.5rem;
    background: var(--dark-bg-primary, #0a0a0a);
    color: var(--dark-text-primary, #fff);
  }

  .formula-header h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
  }

  .formula-header p {
    color: var(--dark-text-secondary, #a1a1aa);
    margin: 0 auto;
    font-size: 1.125rem;
  }

.button-veltech {
    z-index: 5;
    background-color: var(--veltech-purple);
    background-image: linear-gradient(45deg,var(--veltech-blue),var(--veltech-purple));
    box-shadow: 0 7px 80px -12px var(--veltech-purple),inset 0 0 0 0 #23314100,inset 0 0 0 0 #23314100;
    color: var(--titles-links);
    text-align: center;
    letter-spacing: 0;
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    padding: 12px 28px 13px;
    font-size: 18px;
    line-height: 1em;
    transition: box-shadow .4s cubic-bezier(.25,.46,.45,.94);
    display: flex;
    position: relative;
    overflow: hidden
}

.button-veltech:hover {
    box-shadow: 0 0 0 -10px var(--veltech-purple),inset -15px 13px 30px 0 var(--veltech-grey),inset 20px -55px 30px 0 var(--veltech-grey)
}

.button-veltech.small {
    padding: 12px 24px;
    font-size: 16px
}

.button-veltech.small.teal-button {
    background-image: linear-gradient(to right,var(--teal-500),var(--teal-700))
}

.section-veltech {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative
}

.row-xs {
    grid-column-gap: .375em;
    grid-row-gap: .375em;
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-auto-columns: auto;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    display: grid;
    position: relative
}

.text-small {
    letter-spacing: 0;
    font-size: 12px;
    position: relative
}

.text-small.text-teal-300.purple {
    color: var(--veltech-blue)
}

.container-default {
    z-index: 5;
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    position: relative
}

.material-icons-round {
    text-transform: none;
    font-family: Material Symbols Outlined,sans-serif;
    font-weight: 400
}

.grid-skills {
    z-index: 5;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-items: start;
    display: grid;
    position: relative
}

.row-sm {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-auto-columns: auto;
    grid-auto-flow: column;
    justify-content: start;
    display: grid
}

.padding-lg {
    padding: 1.5em;
    position: relative
}

.padding-lg.space-between {
    height: 100%
}

.text-teal-300 {
    color: var(--teal-400)
}

.head-titles {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 750px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative
}

.opacity-50 {
    opacity: .5;
    opacity: .5
}

._2x-pricing-grid {
  margin-top: 2rem;
  display: grid;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr
}

.pricing-info-list {
  display: grid;
    z-index: 5;
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex: 1;
    grid-template-rows: auto;
    grid-template-columns: .75fr 1fr;
    width: 100%;
    margin-top: 2em;
    position: relative
}

.space-between {
    flex-direction: column;
    justify-content: space-between;
    display: flex
}

.space-between.left {
    align-items: flex-start
}

.rounded-xs {
    border-radius: .5em;
    position: relative;
    overflow: hidden
}

.line-animated {
    background-image: linear-gradient(90deg,#f9fafb33,#f9fafb00);
    width: 100%;
    height: 1px;
    position: absolute;
    inset: 0% 0% auto
}

.bg-neutral-800 {
    background-color: var(--dark-bg-primary)
}

.button-label {
    z-index: 5;
    justify-content: center;
    align-items: center;
    line-height: 1em;
    display: flex;
    position: relative
}

.button-hover-background {
    z-index: 0;
    background-color: #0d111726;
    border-radius: 9999px;
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    inset: 0%
}

.bg-pattern-image {
    object-fit: contain;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    position: absolute;
    inset: auto 0%
}

.bg-pattern-image.cover {
    object-fit: cover;
    height: 100%
}

.bg-pattern-wrap {
    background-color: var(--veltech-dark);
    border-radius: 10px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    inset: 0%
}

.bg-pattern-wrap.borders {
    border: 1px solid var(--veltech-light-purple)
}

.line-holder {
    width: 100%;
    position: relative
}

.line-holder.invert {
    transform: rotate(180deg)
}

.caption {
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: 10px
}

.caption-holder {
  display: grid;
    z-index: 5;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    position: relative
}

.price-span {
    background-image: linear-gradient(45deg,var(--veltech-blue),var(--veltech-purple));
    color: var(--titles-links);
    letter-spacing: .02em;
    border-radius: 5px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1em;
    display: flex;
    position: relative
}

.price-span.green {
    background-image: linear-gradient(45deg,var(--teal-600),var(--teal-300))
}

.caption-holder-center {
    z-index: 5;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative
}

.h2-with-gradient {
    padding-right: 2px;
    line-height: 1.2em
}

.h3-small {
    font-size: 30px
}

@media screen and (max-width: 991px) {
    .button-veltech {
        font-size: 18px
    }

    .padding-lg {
        padding: 1.375em
    }

    .head-titles {
        margin-bottom: 30px
    }

    ._2x-pricing-grid {
        grid-template-columns: 1fr
    }

    .button-hover-background {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .section-veltech {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .padding-lg {
        padding: 1.25em
    }

    ._2x-pricing-grid {
        grid-column-gap: .5em;
        grid-row-gap: .5em
    }
}

@media screen and (max-width: 479px) {
    .container-default {
        padding-left: 20px;
        padding-right: 20px
    }

    .grid-skills {
        justify-items: start
    }

    .padding-lg {
        padding: 1.125em
    }

    .head-titles {
        grid-column-gap: 5px;
        grid-row-gap: 5px
    }

    .pricing-info-list {
        grid-template-columns: 1fr
    }
}

#w-node-_718e57b0-6b93-1d1e-7cf6-e3c83536c197-f0342ccf,#w-node-_718e57b0-6b93-1d1e-7cf6-e3c83536c198-f0342ccf,#w-node-_718e57b0-6b93-1d1e-7cf6-e3c83536c19e-f0342ccf,#w-node-_718e57b0-6b93-1d1e-7cf6-e3c83536c19f-f0342ccf,#w-node-_4ee217f2-24d9-6f37-282e-34f9cd3b19ae-f0342ccf,#w-node-_4ee217f2-24d9-6f37-282e-34f9cd3b19b4-f0342ccf {
    grid-area: span 1/span 1/span 1/span 1
}

#w-node-_8d773f4b-8040-25c3-a0ac-ad4c9ba6eaab-f0342ccf {
    align-self: center
}

#w-node-_4ee217f2-24d9-6f37-282e-34f9cd3b19b8-f0342ccf,#w-node-_4ee217f2-24d9-6f37-282e-34f9cd3b19b9-f0342ccf {
    grid-area: span 1/span 1/span 1/span 1
}

#w-node-_4ee217f2-24d9-6f37-282e-34f9cd3b19bf-f0342ccf {
    place-self: center end
}

#w-node-_718e57b0-6b93-1d1e-7cf6-e3c83536c1d8-f0342ccf {
    grid-area: span 1/span 1/span 1/span 1
}

#w-node-_20f90998-d995-7434-0919-b28f086edd5f-f0342ccf {
    align-self: center
}

#w-node-_718e57b0-6b93-1d1e-7cf6-e3c83536c1e2-f0342ccf,#w-node-_718e57b0-6b93-1d1e-7cf6-e3c83536c1e3-f0342ccf {
    grid-area: span 1/span 1/span 1/span 1
}

#w-node-_718e57b0-6b93-1d1e-7cf6-e3c83536c1e9-f0342ccf {
    place-self: center end
}

@media screen and (max-width: 991px) {
    #w-node-_4ee217f2-24d9-6f37-282e-34f9cd3b19bf-f0342ccf,#w-node-_718e57b0-6b93-1d1e-7cf6-e3c83536c1e9-f0342ccf {
        grid-area:span 1/span 2/span 1/span 2;
        justify-self: stretch
    }
}
.custom-build-card {
  border-radius: 16px;
  border: 1px solid #ff0a2f;
  background: linear-gradient(135deg, rgba(255, 10, 47, 0.1), rgba(178, 6, 28, 0.05));  
}
