/* VARIABLES & RESET */
:root {
    --bg-dark: #050507;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary-accent: #6b4cff; /* Vivid Purple */
    --secondary-accent: #2e8bfa; /* Bright Blue */
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --gradient-main: linear-gradient(135deg, #6b4cff 0%, #2e8bfa 100%);
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* UTILITIES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center { text-align: center; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(107, 76, 255, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 76, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* GLASSMORPHISM */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* NAVBAR */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(5, 5, 7, 0.8);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a.btn-secondary.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.nav-links a:not(.btn-secondary):hover {
    color: var(--secondary-accent);
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-anim {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(107, 76, 255, 0.15) 0%, rgba(5,5,7,0) 50%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate { 
    from { transform: rotate(0deg); } 
    to { transform: rotate(360deg); } 
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ABOUT */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.visual-card {
    display: flex;
    justify-content: space-around;
    padding: 50px 30px;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-accent);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* SERVICES */
.services {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0a0a0f);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-accent);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* WHY CHOOSE */
.why-choose {
    padding: 100px 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-check {
    background: rgba(46, 139, 250, 0.2);
    color: var(--secondary-accent);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.author {
    font-weight: 600;
    color: var(--text-muted);
}

/* PRICING */
/* Mobile Responsive Pricing Cards */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 15px;
    }

    .pricing-grid {
        flex-direction: column;   /* ek ke niche ek */
        gap: 20px;
        max-width: 100%;
    }

    .pricing-card {
        width: 100%;
    }
}

.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border-color: var(--primary-accent);
    background: rgba(107, 76, 255, 0.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-accent);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.price-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: "•";
    color: var(--primary-accent);
}

/* LEAD CAPTURE */
.lead-capture {
    padding: 80px 0;
}

.narrow-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.capture-box {
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
}

.capture-box h2 {
    margin-bottom: 15px;
}

.capture-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.capture-form input {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--card-border);
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.capture-form input:focus {
    outline: none;
    border-color: var(--secondary-accent);
}

.micro-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* DISCLAIMER & FOOTER */
.disclaimer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.disclaimer p {
    font-size: 0.75rem;
    color: #555;
    text-align: justify;
}

.section-padding-small {
    padding: 40px 0;
}

footer {
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #444;
    font-size: 0.9rem;
}

/* ANIMATIONS */
[data-animate] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="slide-right"] {
    transform: translateX(-30px);
}

[data-animate="slide-left"] {
    transform: translateX(30px);
}

[data-animate="zoom-in"] {
    transform: scale(0.95);
}

.in-view {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .about-grid, .pricing-grid, .features-list, .footer-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular { transform: scale(1.02); margin: 20px 0; }
    .nav-links { display: none; } /* Mobile Menu simplified for prototype */
}
