/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    overflow-x: hidden;
    color: #222;
    background: #f8f6fc;
    line-height: 1.6;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-outline {
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    font-size: 16px;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, #b55dcd, #724EBF);
    color: white;
    box-shadow: 0 15px 35px rgba(114, 78, 191, .4);
}

.btn-outline {
    border: 2px solid #724EBF;
    background: transparent;
    color: #724EBF;
    text-decoration: none;
}

.btn-outline:hover {
    background: #724EBF;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(114, 78, 191, .5);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 60px;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(114, 78, 191, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text span.primary-word,
.hero-text span.secondary-word {
    background: linear-gradient(90deg, #b55dcd, #724EBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    margin: 20px 0;
    font-size: clamp(16px, 2vw, 20px);
    color: #555;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.hero-stats .stat h3 {
    color: #724EBF;
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.hero-stats .stat p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.dashboard {
    flex: 1;
    display: flex;
    justify-content: center;
}

.laptop {
    background: linear-gradient(120deg, #724EBF, #b55dcd);
    padding: 4px;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .2);
    width: 100%;
    max-width: 650px;
}

.laptop img {
    width: 100%;
    border-radius: 14px;
    display: block;
    height: auto;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    line-height: 1.3;
}

.section-header h2 span {
    background: linear-gradient(90deg, #b55dcd, #724EBF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    max-width: 700px;
    margin: 15px auto 0;
    color: #555;
    font-size: clamp(15px, 2vw, 18px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff, #f4f2fb);
    padding: 35px;
    border-radius: 30px;
    transition: .4s ease;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .07);
    border: 1px solid rgba(114, 78, 191, .1);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 80px rgba(114, 78, 191, .25);
    background: linear-gradient(145deg, #ffffff, #efe9ff);
}

.feature-card h3 {
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

/* ===== STATS SECTION ===== */
.stats {
    background: linear-gradient(120deg, #724EBF, #b55dcd);
    color: white;
    text-align: center;
    padding: 80px 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== TRANSFORMATION SECTION ===== */
.transformation-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, #f8f3fc 0%, #ffffff 100%);
        overflow-x: hidden;
}

.transformation-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.transform-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    gap: 30px;
}

.problem-box,
.solution-box {
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: 0.4s ease;
}

.problem-box {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.15);
}

.solution-box {
    background: linear-gradient(135deg, #b55dcd20, #724EBF20);
    border: 1px solid #b55dcd60;
    box-shadow: 0 0 30px #b55dcd30;
}

.problem-box h3 {
    color: #c0392b;
    margin-bottom: 12px;
    font-size: clamp(18px, 2.5vw, 22px);
}

.solution-box h3 {
    color: #724EBF;
    margin-bottom: 12px;
    font-size: clamp(18px, 2.5vw, 22px);
}

.problem-box p,
.solution-box p {
    font-size: 16px;
    color: #555;
}

.divider-line {
    width: 4px;
    align-self: stretch;
    background: linear-gradient(to bottom, #b55dcd, #724EBF);
    border-radius: 10px;
    box-shadow: 0 0 15px #b55dcd;
    margin: 0 auto;
}

/* ===== USECASES SECTION ===== */
.usecases {
    padding: 100px 5%;
}

.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.usecase-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    border: 1px solid #b55dcd;
    text-align: center;
    transition: 0.3s;
}

.usecase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(181, 93, 205, 0.2);
}

.usecase-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #b55dcd;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usecase-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.usecase-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.usecase-card p {
    color: #666;
    line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 100px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #f0e6ff;
    box-shadow: 0 8px 20px -8px rgba(114, 78, 191, 0.08);
    overflow: hidden;
}

.faq-item:hover {
    border-color: #b55dcd40;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    color: #2d2d4a;
    transition: 0.2s;
}

.faq-question:hover {
    background: #faf7ff;
}

.faq-question i {
    font-size: 20px;
    color: #b55dcd;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #724EBF;
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    background: #fdfbff;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 25px 20px 25px;
    border-top: 1px solid #f0e2ff;
}

.faq-answer p {
    color: #4a4a6a;
    line-height: 1.6;
    font-size: 16px;
    margin-top: 15px;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(120deg, #724EBF, #b55dcd);
    color: white;
    text-align: center;
    border-radius: 50px;
    margin: 60px 5%;
    padding: 80px 40px;
}

.cta h2 {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta p {
    font-size: 18px;
    margin: 20px 0;
    opacity: 0.95;
}

.cta .btn-primary {
    background: white;
    color: #724EBF;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    font-size: 18px;
    padding: 15px 40px;
}

.cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: #1c1333;
    color: #ddd;
    padding: 70px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: white;
    font-size: 18px;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #ccc;
    margin-bottom: 12px;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col a:hover {
    color: #b55dcd;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

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

/* Large Tablets (992px and down) */
@media screen and (max-width: 992px) {
    .navbar {
        padding: 15px 4%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 4% 50px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center !important;
    }

    .dashboard {
        width: 100%;
        max-width: 600px;
    }

    .transform-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .divider-line {
        width: 80px;
        height: 4px;
        margin: 10px auto;
    }

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

/* Tablets (768px and down) */
@media screen and (max-width: 768px) {
    
    .hero h1 {
        font-size: 36px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats .stat h3 {
        font-size: 1.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

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

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

    .cta {
        margin: 40px 4%;
        padding: 50px 20px;
        border-radius: 30px;
    }
}

/* Mobile Phones (576px and down) */
@media screen and (max-width: 576px) {
    .navbar {
        padding: 12px 4%;
    }

    .logo {
        font-size: 20px;
    }

    .hero {
        padding: 90px 4% 40px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-stats {
        gap: 15px;
    }

    .hero-stats .stat h3 {
        font-size: 1.3rem;
    }

    .hero-stats .stat p {
        font-size: 0.8rem;
    }

    .btn-primary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        margin: 5px 0;
    }

    .ms-2 {
        margin-left: 0 !important;
    }

    .features,
    .transformation-section,
    .usecases,
    .faq {
        padding: 60px 4%;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-card h3 {
        font-size: 22px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .stats {
        padding: 50px 4%;
    }

    .stats-grid {
        gap: 20px;
    }

    .stat h2 {
        font-size: 28px;
    }

    .stat p {
        font-size: 12px;
    }

    .problem-box,
    .solution-box {
        padding: 20px;
    }

    .problem-box h3,
    .solution-box h3 {
        font-size: 18px;
    }

    .problem-box p,
    .solution-box p {
        font-size: 14px;
    }

    .usecase-grid {
        grid-template-columns: 1fr;
    }

    .usecase-card {
        padding: 25px;
    }

    .usecase-icon {
        width: 60px;
        height: 60px;
    }

    .usecase-icon svg {
        width: 30px;
        height: 30px;
    }

    .usecase-card h3 {
        font-size: 20px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }

    .faq-question span {
        width: 85%;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .cta h2 {
        font-size: 24px;
    }

    .cta p {
        font-size: 15px;
    }

    .cta .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 250px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col a:hover {
        padding-left: 0;
    }
}

/* Small Mobile Phones (375px and down) */
@media screen and (max-width: 375px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-stats .stat h3 {
        font-size: 1.1rem;
    }

    .hero-stats .stat p {
        font-size: 0.7rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat h2 {
        font-size: 32px;
    }

    .section-header h2 {
        font-size: 24px;
    }
}

/* Landscape Mode */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 4% 40px;
    }

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

    .dashboard {
        max-width: 450px;
    }
}

/* High Resolution Screens */
@media screen and (min-width: 1400px) {
    .hero-text h1 {
        font-size: 90px;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
}