/* Base Styles */
:root {
    --primary-color: #4361ee;
    --secondary-color: #4cc9f0;
    --accent-color: #3f37c9;
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    --bg-color: #fff;
    --light-bg: #f9fafc;
    --border-color: #eee;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.8rem; }
  h4 { font-size: 1.5rem; }
  
  p {
    margin-bottom: 15px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
  }
  
  .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
  }
  
  .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-ghost {
    background-color: transparent;
    color: var(--text-color);
  }
  
  .btn-ghost:hover {
    color: var(--primary-color);
  }
  
  .btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  
  .btn i {
    margin-right: 8px;
  }
  
  /* Header */
  .announcement-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .announcement-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .announcement-bar a {
    color: white;
    margin-left: 15px;
    font-weight: 500;
  }
  
  .main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
  }
  
  .main-header.scrolled {
    padding: 10px 0;
  }
  
  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-center-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
  }
  
  .logo-wrapper {
    display: flex;
    align-items: center;
  }
  
  .logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 10px;
    color: var(--primary-color);
  }
  
  .main-nav {
    /* Mobile menu styles handled by JS toggle */
    /* Desktop styles */
  }
  
  .main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .main-nav li {
    margin: 0 15px;
  }
  
  .main-nav a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
  }
  
  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  .main-nav a:hover::after {
    width: 100%;
  }
  
  .header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  
  .header-actions a.btn {
    white-space: nowrap;
  }
  
  .mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(76, 201, 240, 0.2) 100%);
    z-index: -1;
  }
  
  .hero-content {
    max-width: 600px;
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
  }
  
  .hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .trust-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--light-text);
  }
  
  .trust-item i {
    color: var(--primary-color);
    margin-right: 8px;
  }
  
  .hero-image {
    position: absolute;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    width: 50%;
  }
  
  .mockup-wrapper {
    position: relative;
  }
  
  .dashboard-mockup {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .floating-element {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
    max-width: 200px;
  }
  
  .floating-element i {
    color: var(--primary-color);
    margin-right: 8px;
  }
  
  .floating-element p {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  
  .floating-1 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
  }
  
  .floating-2 {
    bottom: -20px;
    right: -20px;
    animation-delay: 1s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  /* Sections Common Styles */
  .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
  }
  
  .section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
  }
  
  .section-title {
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    color: var(--light-text);
  }
  
  /* Clients Section */
  .clients-section {
    padding: 60px 0;
    background-color: var(--light-bg);
  }
  
  .client-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
  
  .client-logos img {
    height: 70px;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
  }
  
  .client-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }
  
  /* Features Section */
  .features-section {
    padding: 100px 0;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    margin-bottom: 20px;
  }
  
  .icon-background {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    font-size: 1.5rem;
  }
  
  .feature-card h3 {
    margin-bottom: 15px;
  }
  
  .feature-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 20px;
  }
  
  .feature-link i {
    margin-left: 8px;
    transition: var(--transition);
  }
  
  .feature-link:hover i {
    transform: translateX(5px);
  }
  
  /* How It Works Section */
  .how-it-works-section {
    padding: 100px 0;
    background-color: var(--light-bg);
  }
  
  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .process-step {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 30px;
    align-items: center;
  }
  
  .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
  }
  
  .step-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 100px 0;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
  }
  
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    color: rgba(67, 97, 238, 0.1);
    font-family: serif;
    line-height: 1;
  }
  
  .testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
  }
  
  .author-info h4 {
    margin-bottom: 5px;
  }
  
  .author-info p {
    color: var(--light-text);
    font-size: 0.9rem;
  }
  
  .testimonials-cta {
    text-align: center;
    margin-top: 50px;
  }
  
  /* Pricing Section */
  .pricing-section {
    padding: 100px 0;
    background-color: var(--light-bg);
  }
  
  .pricing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .pricing-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .pricing-tab.active {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
  }
  
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .pricing-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card.featured {
    border: 2px solid var(--primary-color);
  }
  
  .popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .pricing-header {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .price {
    margin: 15px 0;
  }
  
  .amount {
    font-size: 3rem;
    font-weight: 700;
  }
  
  .period {
    font-size: 1rem;
    color: var(--light-text);
  }
  
  .price-description {
    color: var(--light-text);
  }
  
  .pricing-features {
    list-style: none;
    margin-bottom: 30px;
  }
  
  .pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .pricing-features i {
    color: var(--primary-color);
    margin-right: 10px;
  }
  
  .pricing-faq {
    margin-top: 60px;
    text-align: center;
  }
  
  .pricing-faq h4 {
    margin-bottom: 30px;
  }
  
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
  }
  
  .faq-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  
  .faq-item h5 {
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  /* CTA Section */
  .cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
  }
  
  .cta-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    margin-bottom: 20px;
  }
  
  .cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
  }
  
  .cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
  }
  
  .cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
  }
  
  /* Footer */
  .main-footer {
    background-color: #1a1a2e;
    color: white;
    padding: 80px 0 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .footer-about .logo-text {
    color: white;
  }
  
  .footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    color: white;
  }
  
  .footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col li {
    margin-bottom: 10px;
  }
  
  .footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }
  
  .footer-col a:hover {
    color: white;
  }
  
  .footer-col i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .footer-links a:hover {
    color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero-content {
      max-width: 100%;
      text-align: center;
      margin-bottom: 60px;
    }
    
    .hero-image {
      position: relative;
      width: 100%;
      top: auto;
      transform: none;
    }
    
    .hero-cta {
      justify-content: center;
    }
    
    .trust-badges {
      justify-content: center;
    }
    
    .process-step {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .step-image {
      order: -1;
    }
  }
  
  @media (max-width: 768px) {
    .main-nav {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background: white;
      padding: 20px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(-150%);
      opacity: 0;
      transition: var(--transition);
      z-index: 99;
    }
    
    .main-nav.active {
      transform: translateY(0);
      opacity: 1;
    }
    
    .main-nav ul {
      flex-direction: column;
    }
    
    .main-nav li {
      margin: 10px 0;
    }
    
    .mobile-menu-button {
      display: block;
    }
    
    .mobile-menu-button.active i::before {
      content: '\f00d';
    }
    
    .header-actions {
      display: none;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-cta {
      flex-direction: column;
      gap: 15px;
    }
    
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
  }
  
  @media (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .section-header {
      margin-bottom: 40px;
    }
    
    .pricing-cards {
      grid-template-columns: 1fr;
    }
  }

  .main-header .logo-wrapper .logo {
    height: 51.2px;
  }

  .main-header .logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 10px;
    color: var(--primary-color);
  }

  .main-footer .logo-wrapper .logo {
    height: 72px;
  }

  .main-footer .container {
    max-width: 90%;
    margin: 0 auto;
  }