:root {
    --primary: #7c007c;
    --primary-light: #b300b3;
    --gradient-primary: linear-gradient(135deg, #7c007c 0%, #aa00aa 100%);
    --secondary: #1a202c;
    /* Dark Text */
    --text-body: #4a5568;
    /* Gray Text */
    --bg-light: #f9f0f9;
    /* Subtle purple tint */
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --neon-glow: 0 0 20px rgba(124, 0, 124, 0.35);
    /* Purple neon glow */
    --radius: 8px;
    --container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--secondary);
    line-height: 1.6;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
}

.logo-icon {
    background: var(--gradient-primary);
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 18px;
    box-shadow: 0 2px 10px rgba(124, 0, 124, 0.3);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary);
    font-size: 16px;
}

.nav-link:hover {
    color: var(--primary);
    background: linear-gradient(90deg, #7c007c, #aa00aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-link {
    font-weight: 600;
    color: var(--secondary);
}

.login-link:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(124, 0, 124, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 0, 124, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(124, 0, 124, 0.05);
}

.btn-white {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.btn-white:hover {
    background: #f0f0f0;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #fdf5fd 100%);
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.text-highlight {
    background: var(--gradient-primary);
    background: linear-gradient(90deg, #7c007c, #c026d3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--secondary);
}

.text-yellow {
    color: #f6ad55;
}

.hero p {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--text-body);
    font-size: 14px;
    font-weight: 600;
}

.trust-badges i {
    font-size: 24px;
    color: #cbd5e0;
}

/* Images & NEON GLOW */
.img-container {
    position: relative;
}

.img-container img,
.rounded-shadow {
    border-radius: 12px;
    box-shadow: var(--shadow-lg), var(--neon-glow);
    border: 1px solid var(--border);
    background: white;
    transition: box-shadow 0.3s ease;
}

.img-container img:hover,
.rounded-shadow:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1), 0 0 35px rgba(124, 0, 124, 0.5);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #0f0518;
    color: white;
    overflow: hidden;
    position: relative;
    /* Deep space background */
    background: radial-gradient(circle at center, #1a0b2e 0%, #0f0518 70%);
}

/* Subtle grid background */
.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(124, 0, 124, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 0, 124, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.process-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.process-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    width: 260px;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-card.hover-lift:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 0, 124, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(124, 0, 124, 0.2);
}

/* Past Core Specifics */
.core-card {
    border-color: rgba(144, 218, 174, 0.3);
    /* Green tint for core */
    background: rgba(144, 218, 174, 0.02);
    box-shadow: 0 0 30px rgba(144, 218, 174, 0.05);
}

.core-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(144, 218, 174, 0.4) 0%, transparent 70%);
    opacity: 0;
    animation: pulseCore 3s infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes pulseCore {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.5);
    }

    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

.process-icon {
    font-size: 32px;
    color: white;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 20px rgba(124, 0, 124, 0.3);
    position: relative;
    z-index: 2;
}

/* Update Icon background for Core */
.core-card .process-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: white;
    font-weight: 700;
}

.process-card p {
    font-size: 15px;
    color: #a0aec0;
}

/* Connectors */
.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 120px;
    padding: 0 10px;
}

.connection-line {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.data-particle {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #c026d3, transparent);
    transform: translateX(-100%);
    animation: flowData 2s infinite linear;
}

.delay-1 {
    animation-delay: 1s;
}

/* Green particle for the second connector (Core -> Output) */
.process-connector:nth-of-type(4) .data-particle {
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}

@keyframes flowData {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(400%);
    }
}

.arrow-head {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    margin-left: 5px;
}

/* Icon Animations */
.icon-pulse-slow {
    animation: iconPulse 3s infinite ease-in-out;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(124, 0, 124, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(124, 0, 124, 0);
    }
}

.icon-spin-slow {
    /* animation: spin 10s infinite linear; */
    /* Spin might be too distracting, let's use a subtle float instead */
    animation: iconFloat 4s infinite ease-in-out;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.icon-bounce-slow {
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Stats Bar */
.stats-bar {
    background: var(--gradient-primary);
    /* Changed to gradient */
    color: white;
    padding: 50px 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-item p {
    opacity: 0.9;
    font-size: 16px;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-body);
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--neon-glow);
    border-color: rgba(124, 0, 124, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    /* Clean white background with colorful border/shadow or gradient bg? */
    /* Let's use faint gradient background to match theme */
    background: linear-gradient(135deg, #f9f0f9 0%, #fff 100%);
    border: 1px solid rgba(124, 0, 124, 0.1);
    color: var(--primary);
}

/* Override previous colors to unified theme */
.icon-box.red,
.icon-box.blue,
.icon-box.green,
.icon-box.orange,
.icon-box.purple,
.icon-box.teal {
    color: var(--primary);
}


.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-body);
    margin-bottom: 20px;
    font-size: 15px;
}

.link-arrow {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.link-arrow:hover {
    gap: 8px;
    background: linear-gradient(90deg, #7c007c, #aa00aa);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Zig Zag Layout */
.row {
    display: flex;
    gap: 60px;
}

.items-center {
    align-items: center;
}

.col-6 {
    flex: 1;
}

.rounded-shadow {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background: white;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-body);
    font-size: 17px;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}

.mt-3 {
    margin-top: 20px;
}

.text-primary {
    color: var(--primary);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: left;
    border-top: 4px solid var(--primary);
}

.stars {
    color: #f6ad55;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review {
    color: var(--text-body);
    font-style: italic;
    margin-bottom: 20px;
    font-size: 15px;
}

.user-info strong {
    display: block;
    color: var(--secondary);
}

.user-info span {
    font-size: 13px;
    color: var(--text-body);
}

.badge-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

/* CTA Footer */
.cta-section {
    background: #0f0518;
    /* Dark Purple-Black background */
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(at top right, #380038 0%, transparent 40%),
        radial-gradient(at bottom left, #380038 0%, transparent 40%);
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
}

.justify-center {
    justify-content: center;
}

/* Footer */
.footer {
    background: #08030b;
    color: #a0aec0;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(124, 0, 124, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Nunito', sans-serif;
    color: white;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.brand-col p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(124, 0, 124, 0.5);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a:hover {
    color: #c026d3;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Responsive */
@media (max-width: 992px) {

    .hero-wrapper,
    .row,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .features-grid,
    .testimonial-grid,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .process-connector {
        display: none;
    }
}