/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #06b6d4;
    --accent: #f59e0b;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
    --bg-color: #ffffff;
    --bg-alt: #f8fafc;
    --text-color: #0f172a;
    --text-muted: #64748b;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-color: #0f172a;
    --bg-alt: #1e293b;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --light: #1e293b;
    --light-gray: #334155;
}

[data-theme="dark"] body {
    background: var(--bg-color);
    color: var(--text-color);
}

[data-theme="dark"] .features-section,
[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .faq-section {
    background: var(--bg-alt);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
}

[data-theme="dark"] .navbar.scrolled .nav-link {
    color: var(--text-color) !important;
}

[data-theme="dark"] .navbar.scrolled .navbar-brand {
    color: white !important;
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .accordion-item,
[data-theme="dark"] .contact-form .form-control,
[data-theme="dark"] .contact-form .form-floating label {
    background: var(--bg-alt);
    border-color: var(--light-gray);
    color: var(--text-color);
}

[data-theme="dark"] .accordion-button {
    background: var(--bg-alt);
    color: var(--text-color);
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
    background: var(--bg-alt);
}

[data-theme="dark"] .accordion-body {
    background: var(--bg-alt);
}

[data-theme="dark"] .section-description,
[data-theme="dark"] .feature-card p,
[data-theme="dark"] .testimonial-content p,
[data-theme="dark"] .accordion-body,
[data-theme="dark"] .contact-details p {
    color: var(--text-muted);
}

[data-theme="dark"] .form-control {
    background: var(--bg-alt);
    border-color: var(--light-gray);
    color: var(--text-color);
}

[data-theme="dark"] .form-control:focus {
    background: var(--bg-alt);
    color: var(--text-color);
}

[data-theme="dark"] .form-floating label {
    color: var(--text-muted);
}

[data-theme="dark"] .form-control::placeholder,
[data-theme="dark"] .contact-form .form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

[data-theme="dark"] .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .pricing-features .bi-x {
    color: var(--text-muted);
}

[data-theme="dark"] .wave-divider svg path,
[data-theme="dark"] .wave-divider-top svg path {
    fill: var(--light);
}

[data-theme="dark"] .wave-divider-bottom svg path {
    fill: var(--bg-alt);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--darker);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-logo {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.loader-progress {
    height: 100%;
    background: var(--gradient);
    width: 0%;
    transition: width 0.3s ease;
    animation: loadingProgress 2s ease forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loader-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s ease;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.1s ease, background 0.2s ease, border-color 0.2s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(2);
    background: var(--primary);
    border-color: transparent;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.custom-cursor-follower.hover {
    transform: scale(1.5);
    opacity: 0.5;
}

@media (pointer: coarse) {
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
    display: flex;
    align-items: center;
}

.navbar.scrolled .navbar-brand {
    color: var(--dark) !important;
}

.navbar-brand i {
    color: var(--accent);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--dark) !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 23, 42, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--darker);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--light);
    z-index: 5;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    color: white;
    padding-top: 80px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background: var(--gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Particles Canvas */
.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Typing Animation */
.typing-cursor {
    animation: blink 1s infinite;
    color: var(--primary);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hero Glow Effect */
.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* 3D Tilt Effect Base */
[data-tilt] {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

/* Feature Card Shine Effect */
.feature-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.feature-card:hover .feature-shine {
    left: 100%;
}

/* Wave Dividers */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
}

.wave-divider.css-wave {
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, var(--light) 100%);
    bottom: 0;
}

.wave-divider svg {
    width: 100%;
    height: 120px;
    display: block;
}

.wave-divider-top {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg-alt);
}

.wave-divider-top svg {
    width: 100%;
    height: 60px;
    display: block;
    margin-top: -1px;
}

.wave-divider-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    background: var(--bg-alt);
}

.wave-divider-bottom svg {
    width: 100%;
    height: 60px;
    display: block;
    margin-bottom: -1px;
}

/* Benefits Section Wave Positioning */
.benefits-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-shape 8s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 50px;
    height: 50px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape-3 {
    width: 30px;
    height: 30px;
    bottom: 20%;
    left: 30%;
    animation-delay: -4s;
}

@keyframes float-shape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Enhanced Scroll Indicator */
.mouse-icon {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
    margin: 0 auto 0.5rem;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel-scroll 1.5s ease-in-out infinite;
}

@keyframes wheel-scroll {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial Controls */
.testimonial-wrapper {
    position: relative;
}

.testimonial-carousel {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    animation: none;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.control-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--light-gray);
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
    cursor: pointer;
}

.control-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* Pricing Toggle */
.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--light);
    padding: 0.5rem;
    border-radius: 50px;
}

.toggle-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--primary);
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: var(--light-gray);
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: var(--transition);
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(24px);
}

.save-badge {
    background: #10b981;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.625rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* FAQ Search */
.faq-search {
    position: relative;
}

.faq-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.faq-search input {
    padding-left: 2.5rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    height: 50px;
}

.faq-more {
    color: var(--gray);
}

.faq-more a {
    color: var(--primary);
    font-weight: 600;
}

/* Floating Form Labels */
.form-floating {
    position: relative;
}

.form-floating label {
    color: var(--gray);
}

.form-floating .form-control:focus + label,
.form-floating .form-control:not(:placeholder-shown) + label {
    color: var(--primary);
}

/* Button States */
.btn-loader,
.btn-success {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loader {
    display: inline-flex;
}

.btn.success .btn-text,
.btn.success .btn-loader {
    display: none;
}

.btn.success .btn-success {
    display: inline-flex;
}

.spin {
    animation: spin 1s linear infinite;
}

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

/* Dark Mode Toggle Button */
.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.navbar.scrolled .btn-icon {
    border-color: var(--light-gray);
    color: var(--dark);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.navbar.scrolled .btn-icon:hover {
    background: var(--light);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 9999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Benefits Item Animation */
.benefit-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.benefit-item.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Author Avatar Images */
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Stat Number Animation */
.stat-number {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Accordion Icons */
.accordion-button i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Magnetic Links */
.magnetic-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Navbar transition enhancement */
.navbar.scrolled .btn-icon {
    border-color: var(--light-gray);
    color: var(--dark);
}

[data-theme="dark"] .navbar.scrolled .btn-icon {
    border-color: var(--light-gray);
    color: var(--text-color);
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 500;
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--accent);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    transition: var(--transition);
}

.scroll-indicator a:hover {
    color: white;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Features Section */
.features-section {
    background: var(--light);
    position: relative;
    margin-top: -2px;
}

.section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--light-gray);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-section {
    background: white;
}

.benefit-visual {
    position: relative;
    height: 350px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.benefit-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.benefit-visual::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
}

.benefit-visual-2 {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
}

.benefit-card-float {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.benefit-card-float i {
    font-size: 2rem;
    color: var(--primary);
}

.benefit-visual-2 .benefit-card-float i {
    color: #ea580c;
}

.benefit-card-float h6 {
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.benefit-card-float p {
    margin-bottom: 0;
    color: var(--gray);
    font-size: 0.875rem;
}

.benefit-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.benefit-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-list i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light);
    overflow: hidden;
}

.testimonial-carousel {
    overflow: hidden;
    padding: 1rem 0;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    flex: 0 0 350px;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

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

.stars {
    color: var(--accent);
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h6 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info span {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    background: white;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 2px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gray);
    margin-bottom: 0;
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    color: var(--gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.pricing-features i {
    font-size: 1.25rem;
}

.pricing-features .bi-check2 {
    color: #10b981;
}

.pricing-features .bi-x {
    color: var(--gray);
}

.pricing-card .btn {
    padding: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius);
}

/* FAQ Section */
.faq-section {
    background: var(--light);
}

.accordion-item {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    background: white;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--light-gray);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: var(--transition);
}

.accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-info {
    padding-right: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    color: var(--gray);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

.contact-form .form-control {
    padding: 0.875rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form textarea.form-control {
    resize: none;
}

.contact-form .btn {
    padding: 0.875rem 2.5rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--darker);
    color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-brand i {
    color: var(--accent);
}

.footer h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    padding: 0.375rem 1rem;
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    background: var(--gradient);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar.scrolled .navbar-collapse {
        margin-top: 0.5rem;
    }
    
    .nav-link {
        color: var(--dark) !important;
        padding: 0.75rem 1rem !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-illustration {
        height: 300px;
        margin-top: 2rem;
    }
    
    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .benefit-visual {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
    }
    
    .footer .col-6 {
        margin-bottom: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        margin-top: 1rem;
    }
    
    .newsletter-form .form-control {
        width: 100% !important;
    }
}

/* Utility Classes */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
