/* Base Styles & Variables */
:root {
    --primary: #ff6b00;
    --primary-dark: #e05d00;
    --secondary: #00a8ff;
    --dark: #1e1e1e;
    --dark-gray: #4a4a4a;
    --medium-gray: #7a7a7a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    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: 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  .highlight {
    color: var(--primary);
  }
  
  .text-center {
    text-align: center;
  }
  
  .section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 0.75rem;
  }
  
  .section-description {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 2rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
    font-size: 1rem;
  }
  
  .btn-primary {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }
  
  .btn-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
  }
  
  .btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
  }
  
  .btn-outline {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 1rem;
  }
  
  .btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-cta {
    padding: 10px 20px;
    border-radius: 8px;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
  }
  
  .nav-cta:hover {
    background-color: var(--primary-dark);
  }
  
  .pulse {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .header.sticky {
    box-shadow: var(--shadow-md);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    height: 80px;
  }
  
  .logo img {
    height: 40px;
    width: auto;
  }
  
  .navbar ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
  }
  
  .navbar a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    font-size: 1rem;
  }
  
  .navbar a:hover {
    color: var(--primary);
  }
  
  .navbar a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
  }
  
  .mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
  }
  
  /* Hero Section */
  .hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fff8f2 0%, #ffefe5 100%);
  }
  
  .hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  
  .hero-content {
    flex: 1;
  }
  
  .hero-image {
    flex: 1;
    position: relative;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--dark);
  }
  
  .hero .subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 600px;
  }
  
  .cta-buttons a {
    background-color: #4CAF50; /* green */
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta-buttons a:hover {
    background-color: #45a049;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .badge {
    display: inline-block;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
    border: 1px solid var(--primary);
}

.badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(var(--primary-rgb), 0.1),
        rgba(var(--primary-rgb), 0.3)
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
    opacity: 0;
}

.badge i {
    margin-right: 0.5rem;
    color: var(--primary);
    animation: bounce 1s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translate(-30%, -30%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    40% {
        transform: rotate(45deg) translate(30%, 30%);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-3px);
    }
}
  .trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .indicator {
    text-align: center;
  }
  
  .indicator .value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
  }
  
  .indicator .label {
    font-size: 0.875rem;
    color: var(--medium-gray);
  }
  
  .hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
  }
  
  .floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 180px;
  }
  
  .floating-badge .rating {
    color: var(--warning);
    margin-bottom: 0.5rem;
  }
  
  .scroll-indicator {
    text-align: center;
    margin-top: 3rem;
  }
  
  .scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
  }
  
  .mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--dark);
    border-radius: 20px;
    display: inline-block;
    position: relative;
  }
  
  .wheel {
    width: 6px;
    height: 6px;
    background-color: var(--dark);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
  }
  
  @keyframes scroll {
    0% {
      opacity: 1;
      top: 8px;
    }
    100% {
      opacity: 0;
      top: 20px;
    }
  }
  
  /* Clients Section */
  .clients {
    padding: 3rem 0;
    background-color: var(--light-gray);
  }
  
  .client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .client-logos img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
  }
  
  .client-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
  }
  
  /* Video Demo Section */
  .video-demo {
    padding: 5rem 0;
  }
  
  .video-container {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  
  .video-wrapper {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  
  .video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .play-button i {
    color: var(--white);
    font-size: 2rem;
    margin-left: 5px;
  }
  
  .play-button:hover {
    background-color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .video-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .feature {
    display: flex;
    gap: 1rem;
  }
  
  .feature .icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .feature .icon i {
    color: var(--primary);
    font-size: 1.25rem;
  }
  
  /* Services Section */
  .services {
    padding: 5rem 0;
    background-color: var(--light-gray);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .service-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .service-card.featured {
    border: 2px solid var(--primary);
  }
  
  .popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .service-icon i {
    color: var(--primary);
    font-size: 1.5rem;
  }
  
  .service-card h3 {
    margin-bottom: 1rem;
  }
  
  .service-features {
    list-style: none;
    margin: 1.5rem 0;
  }
  
  .service-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .service-features i {
    color: var(--success);
  }
  
  .service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
  }
  
  .service-link i {
    transition: var(--transition);
  }
  
  .service-link:hover i {
    transform: translateX(3px);
  }
  
  /* Features Section */
  .features {
    padding: 5rem 0;
  }
  
  .features-tabs {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .tabs-header {
    display: flex;
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 2rem;
  }
  
  .tab-button {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
  }
  
  .tab-button.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
  }
  
  .tab-pane {
    display: none;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  .feature-content {
    display: flex;
    gap: 3rem;
    align-items: center;
  }
  
  .feature-image {
    flex: 1;
  }
  
  .feature-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
  }
  
  .feature-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .feature-item {
    display: flex;
    gap: 1rem;
  }
  
  .feature-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .feature-item .icon i {
    color: var(--primary);
    font-size: 1.25rem;
  }
  
  /* Pricing Section */
  .pricing {
    padding: 5rem 0;
    background-color: var(--light-gray);
  }
  
  .pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--medium-gray);
    transition: var(--transition);
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: var(--transition);
  }
  
  input:checked + .slider {
    background-color: var(--primary);
  }
  
  input:checked + .slider:before {
    transform: translateX(30px);
  }
  
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .pricing-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
  }
  
  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  .pricing-card.featured {
    border: 2px solid var(--primary);
  }
  
  .pricing-card h3 {
    color: var(--dark);
  }
  
  .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1rem 0;
  }
  
  .price sup {
    font-size: 1rem;
    position: relative;
    top: -0.5em;
  }
  
  .price .period {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--medium-gray);
  }
  
  .package-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
  }
  
  .pricing-card ul {
    list-style: none;
    margin: 1.5rem 0;
  }
  
  .pricing-card li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .pricing-card i.fa-check {
    color: var(--success);
  }
  
  .pricing-card i.fa-times {
    color: var(--error);
  }
  
  .pricing-note {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
  }
  
  .pricing-note i {
    color: var(--primary);
    margin-right: 0.5rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 5rem 0;
  }
  
  .testimonial-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .testimonial-card {
    min-width: 350px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
  }
  
  .rating {
    color: var(--warning);
    margin-bottom: 1rem;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
  }
  
  .client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .client-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }
  
  .client-info p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: 0;
  }
  
  .testimonial-cta {
    text-align: center;
    margin-top: 3rem;
  }
  
  .testimonial-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 4rem 0;
    background-color: var(--primary);
    color: var(--white);
  }
  
  .cta-section h2 {
    color: var(--white);
  }
  
  .cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
  }
  
  .cta-content {
    text-align: center;
  }
  
  /* FAQ Section */
  .faq {
    padding: 5rem 0;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  
  .faq-question {
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    background-color: var(--white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .faq-question:hover {
    background-color: var(--light-gray);
  }
  
  .faq-question i {
    transition: var(--transition);
  }
  
  .faq-question.active i {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
  }
  
  .faq-answer p {
    padding: 1.25rem 0;
  }
  
  .faq-cta {
    text-align: center;
    margin-top: 2rem;
  }
  
  /* Footer */
  .footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 0;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
  }
  
  .footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
  }
  
  .footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
  }
  
  .footer-col ul {
    list-style: none;
  }
  
  .footer-col li {
    margin-bottom: 0.75rem;
  }
  
  .footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }
  
  .footer-col a:hover {
    color: var(--white);
    padding-left: 5px;
  }
  
  .footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .footer-contact i {
    width: 20px;
    color: var(--primary);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
  }
  
  .footer-copyright {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
  }
  
  .footer-links a:hover {
    color: var(--white);
  }
  
  /* Back to Top */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
  }
  
  /* Preloader */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
  }
  
  .preloader.fade-out {
    opacity: 0;
  }
  
  .loader {
    display: flex;
    gap: 6px;
  }
  
  .loader-square {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    animation: loaderAnimation 1.5s infinite ease-in-out;
  }
  
  .loader-square:nth-child(1) {
    animation-delay: 0s;
  }
  
  .loader-square:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .loader-square:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  .loader-square:nth-child(4) {
    animation-delay: 0.6s;
  }
  
  .loader-square:nth-child(5) {
    animation-delay: 0.8s;
  }
  
  .loader-square:nth-child(6) {
    animation-delay: 1s;
  }
  
  .loader-square:nth-child(7) {
    animation-delay: 1.2s;
  }
  
  @keyframes loaderAnimation {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
      background-color: var(--primary-dark);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .hero .container,
    .video-container,
    .feature-content {
      flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .video-wrapper,
    .video-features,
    .feature-image,
    .feature-list {
      flex: none;
      width: 100%;
    }
    
    .hero-image {
      margin-top: 2rem;
    }
    
    .video-features {
      margin-top: 2rem;
    }
    
    .feature-image {
      order: -1;
      margin-bottom: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: var(--white);
      box-shadow: var(--shadow-md);
      padding: 1rem;
      transform: translateY(-150%);
      opacity: 0;
      transition: var(--transition);
    }
    
    .navbar.active {
      transform: translateY(0);
      opacity: 1;
    }
    
    .navbar ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .mobile-menu {
      display: block;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .trust-indicators {
      flex-direction: column;
      gap: 1rem;
    }
    
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.75rem;
    }
  }
  
  @media (max-width: 576px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
    
    .footer-links {
      justify-content: center;
      margin-top: 1rem;
    }
  }