/* ================================================
   IndiCloudAI - Landing Page Styles
   ================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 50%, #000520 100%);
    color: #ffffff;
    line-height: 1.6;
}

/* ================================================
   NAVIGATION
   ================================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    padding: 20px 0;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo a {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-menu a:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

.navbar-cta {
    padding: 12px 30px;
    background: linear-gradient(135deg, #8a2be2, #48dbfb);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.navbar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #8a2be2, #48dbfb, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #8a2be2, #48dbfb);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(138, 43, 226, 0.5);
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
}

/* ================================================
   FEATURES SECTION
   ================================================ */

.features {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #8a2be2;
    box-shadow: 0 20px 50px rgba(138, 43, 226, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-percent {
    font-size: 32px;
    font-weight: 900;
    color: #48dbfb;
    margin-bottom: 8px;
}

.feature-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ================================================
   CHALLENGE SECTION
   ================================================ */

.challenge {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.challenge-container h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}

.challenge-container h3 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    text-align: center;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.challenge-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.challenge-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #8a2be2;
    transform: translateX(10px);
}

.challenge-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.challenge-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   SOLUTIONS SECTION
   ================================================ */

.solutions {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.solutions-container h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}

.solutions-container h3 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #48dbfb;
    box-shadow: 0 20px 50px rgba(72, 219, 251, 0.2);
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.solution-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

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

/* ================================================
   PROCESS SECTION
   ================================================ */

.process {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.process-container h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}

.process-container h3 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    text-align: center;
}

.process-container h4 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a2be2, #48dbfb);
    border-radius: 50%;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.process-step h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ================================================
   TESTIMONIALS SECTION (NEW)
   ================================================ */

.testimonials {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
}

.testimonials-container h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}

.testimonials-container h3 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #48dbfb;
    box-shadow: 0 20px 50px rgba(72, 219, 251, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    font-size: 48px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8a2be2, #48dbfb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author {
    flex: 1;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.author-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-rating {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ffd700;
}

.testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #48dbfb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

/* Social Proof Stats */
.social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    padding: 40px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
}

.proof-stat {
}

.proof-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #8a2be2, #48dbfb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.proof-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ================================================
   PRICING SECTION
   ================================================ */

.pricing {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.pricing-container h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-container h3 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    text-align: center;
}

.pricing-container h4 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #48dbfb;
    box-shadow: 0 20px 50px rgba(72, 219, 251, 0.2);
}

.pricing-card h4 {
    font-size: 22px;
    margin-bottom: 25px;
}

.pricing-price {
    font-size: 42px;
    font-weight: 900;
    color: #48dbfb;
    margin-bottom: 10px;
}

.pricing-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

/* ================================================
   CONTACT SECTION
   ================================================ */

.contact {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-container h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}

.contact-container h3 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.contact-info a {
    color: #48dbfb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    color: rgba(255, 255, 255, 0.5);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 30px;
    }

    .navbar-menu {
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
    }

    .navbar-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid,
    .challenge-grid,
    .solutions-grid,
    .testimonials-grid,
    .process-steps,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    section {
        padding: 50px 20px !important;
    }
}
