/* Custom CSS for GalaxyVyr Website */

:root {
    --primary-purple: #6366f1;
    --secondary-purple: #8b5cf6;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --dark-purple: #4c1d95;
    --light-purple: #a78bfa;
    --text-white: #ffffff;
    --text-gray: #6b7280;
    --text-dark: #1f2937;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 50%, var(--dark-purple) 100%);
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    filter: brightness(0) invert(1);
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-green) !important;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--text-white);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    color: var(--text-white);
}

.btn-success {
    background-color: var(--accent-green);
    border-color: var(--accent-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #059669;
    border-color: #059669;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.feature-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.trust-badges img {
    opacity: 0.8;
    filter: brightness(0) invert(1);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.mockup-header {
    background: #f8fafc;
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background-color: #ef4444; }
.control.yellow { background-color: #f59e0b; }
.control.green { background-color: #10b981; }

.mockup-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.mockup-content {
    padding: 2rem;
    background: white;
}

.lead-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lead-bar {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.lead-bar.active {
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-green));
}

.lead-bar:nth-child(1) { width: 80%; }
.lead-bar:nth-child(2) { width: 60%; }
.lead-bar:nth-child(3) { width: 90%; }
.lead-bar:nth-child(4) { width: 70%; }
.lead-bar:nth-child(5) { width: 85%; }
.lead-bar:nth-child(6) { width: 95%; }

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

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

.card-2 {
    top: 60%;
    right: -10%;
    animation-delay: 2s;
}

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

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

/* Trusted Section */
.trusted-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.company-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-item {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Features Overview */
.features-overview {
    padding: 80px 0;
}

.features-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.feature-demo {
    margin-bottom: 3rem;
}

.demo-mockup {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.demo-header {
    background: #f8fafc;
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.demo-controls {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.demo-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-content {
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    text-align: center;
    position: relative;
}

.demo-text h4 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.demo-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.demo-play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-play-button:hover {
    transform: scale(1.1);
    background: #059669;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.rating-stars {
    color: #fbbf24;
}

.rating-stars i {
    margin-right: 0.25rem;
}

/* Platform Section */
.platform-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.section-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.platform-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h5 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

.company-logo {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Core Features */
.core-features {
    padding: 80px 0;
}

.core-features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.core-features .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

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

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer h5 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

.footer-links a:hover {
    color: var(--accent-green);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--accent-green);
    width: 16px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.footer-legal:hover {
    color: var(--accent-green);
}

/* Additional Styles for New Pages */

/* Legal Content */
.legal-content {
    padding: 120px 0 80px;
}

.legal-document {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--text-dark);
}

.legal-document h1 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.legal-document h2 {
    color: var(--primary-purple);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-document h3 {
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.last-updated {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.contact-details {
    background: rgba(99, 102, 241, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-form-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-form-card p {
    color: var(--text-gray);
}

.contact-form .form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-info-sidebar {
    background: rgba(99, 102, 241, 0.1);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-info-sidebar h4 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

.benefit-content h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-details p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours p {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.thank-you-message {
    text-align: center;
    padding: 3rem;
}

.thank-you-message h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.thank-you-message .lead {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.contact-faq h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.contact-faq .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Specific Styles */
.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-plans {
    padding: 80px 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid var(--accent-green);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.plan-header h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-display {
    margin-bottom: 1rem;
}

.price-display .currency {
    font-size: 1.5rem;
    color: var(--text-gray);
    vertical-align: top;
}

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

.price-display .period {
    color: var(--text-gray);
    margin-left: 0.5rem;
}

.price-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.plan-description {
    color: var(--text-gray);
    margin-bottom: 0;
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-features h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

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

.lead-pricing {
    background: rgba(99, 102, 241, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.lead-pricing h5 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.lead-range {
    margin-bottom: 1rem;
}

.range-slider {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    position: relative;
    margin-bottom: 0.5rem;
}

.range-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-green));
    border-radius: 4px;
    position: relative;
}

.range-handle {
    position: absolute;
    top: -4px;
    width: 16px;
    height: 16px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.range-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.plan-cta {
    margin-top: auto;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.pricing-faq h2 {
    color: var(--text-white);
}

.pricing-faq .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* ROI Calculator */
.roi-calculator {
    padding: 80px 0;
}

.roi-calculator h2 {
    color: var(--text-white);
}

.roi-calculator .lead {
    color: rgba(255, 255, 255, 0.9);
}

.calculator-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.calculator-card h4 {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.calculator-card .form-label {
    color: var(--text-dark);
    font-weight: 600;
}

.savings-display {
    background: rgba(99, 102, 241, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.savings-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.savings-item.highlight {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-bottom: none;
}

.savings-label {
    color: var(--text-dark);
    font-weight: 600;
}

.savings-value {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: 1.25rem;
}

.savings-item.highlight .savings-value {
    color: var(--accent-green);
    font-size: 1.5rem;
}

/* Features Page Specific */
.features-grid {
    padding: 80px 0;
}

.feature-card-detailed {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card-detailed:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.feature-card-detailed h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card-detailed p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Feature Comparison */
.feature-comparison {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.feature-comparison h2 {
    color: var(--text-white);
}

.feature-comparison .lead {
    color: rgba(255, 255, 255, 0.9);
}

.comparison-table {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.comparison-table .table {
    margin-bottom: 0;
}

.comparison-table th {
    color: var(--primary-purple);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-purple);
}

.comparison-table td {
    color: var(--text-dark);
    vertical-align: middle;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    color: var(--text-white);
}

.testimonials-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Product Page Specific */
.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-mockup {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.ai-visualization {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    text-align: center;
}

.neural-network {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.node-layer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.node {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.node.active {
    background: var(--accent-green);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.ai-stats {
    display: flex;
    justify-content: space-around;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.how-it-works h2 {
    color: var(--text-white);
}

.how-it-works .lead {
    color: rgba(255, 255, 255, 0.9);
}

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

.step-number {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
}

.technology-section h2 {
    color: var(--text-white);
}

.technology-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.tech-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.tech-card h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.tech-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.advantages-section h2 {
    color: var(--text-white);
}

.advantages-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.advantage-card h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.advantage-metric {
    background: rgba(16, 185, 129, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-green);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
}

.use-cases-section h2 {
    color: var(--text-white);
}

.use-cases-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.use-case-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.use-case-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.use-case-card h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.use-case-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.use-case-benefits {
    list-style: none;
    padding: 0;
}

.use-case-benefits li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.use-case-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .company-logos {
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .legal-document {
        padding: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-info-sidebar {
        margin-top: 2rem;
    }
    
    .pricing-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .neural-network {
        flex-direction: column;
        gap: 1rem;
    }
    
    .node-layer {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .features-overview h2,
    .platform-content h2,
    .core-features h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .legal-document {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}
