*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    color:#071735;
    background:#F7FBFF;
}

/* =========================
   NAVBAR
========================= */

.topbar{
    height:78px;
    padding:0 7%;
    display:flex;
    align-items:center;
    background:white;
    border-bottom:1px solid rgba(44,134,211,.10);
}

.logo img{
    max-height:42px;
}

.menu{
    display:flex;
    align-items:center;
    gap:34px;
    margin-left:auto;
    margin-right:40px;
}

.menu a{
    color:#071735;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
}

.demo-btn{
    background:#2C86D3;
    color:white;
    padding:15px 24px;
    border-radius:12px;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 10px 24px rgba(44,134,211,.18);
}

/* =========================
   HERO
========================= */

.hero{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    align-items:center;
    padding:90px 7%;
    background:linear-gradient(135deg,#F8FBFE 0%,#EEF6FC 100%);
}

.hero h1{
    font-size:64px;
    line-height:1.05;
    margin:0 0 22px;
    letter-spacing:-2px;
}

.hero h1 span{
    color:#2C86D3;
}

.hero p{
    font-size:21px;
    line-height:1.6;
    color:#52637A;
    margin:0;
}

.pill,
.section-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#E7F3FB;
    color:#126FC2;
    font-weight:800;
    font-size:13px;
    padding:10px 16px;
    border-radius:999px;
    margin-bottom:24px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin:38px 0 48px;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:800;
    font-size:16px;
}

.btn-primary{
    background:#2C86D3;
    color:white;
    box-shadow:0 12px 28px rgba(44,134,211,.24);
}

.btn-secondary{
    background:white;
    color:#2C86D3;
    border:1px solid rgba(44,134,211,.16);
}

.logos-title{
    font-size:12px;
    font-weight:900;
    color:#64748B;
    letter-spacing:.8px;
    margin-bottom:18px;
}

.logos{
    display:flex;
    align-items:center;
    gap:34px;
    flex-wrap:wrap;
}

.logos img{
    max-height:36px;
}

/* =========================
   BENEFITS
========================= */

.benefits-strip{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    margin:-34px 7% 70px;
    background:white;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(44,134,211,.10);
    box-shadow:0 12px 34px rgba(44,134,211,.10);
    position:relative;
    z-index:2;
}

.benefit-card{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:28px 24px;
    border-right:1px solid #EEF3F8;
}

.benefit-card:last-child{
    border-right:none;
}

.benefit-icon{
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
}

.benefit-card h3{
    margin:0 0 8px;
    font-size:15px;
    font-weight:900;
}

.benefit-card p{
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#52637A;
}

.purple{
    background:#F1E8FF;
    color:#7C3AED;
}

.green{
    background:#EAFBF1;
    color:#16A34A;
}

.blue{
    background:#E8F1FF;
    color:#2563EB;
}

.orange{
    background:#FFF3E7;
    color:#EA580C;
}

.teal{
    background:#E8FBFB;
    color:#0F9FA8;
}

/* =========================
   AI SECTION
========================= */

.ai-section{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:60px;
    padding:90px 7%;
    background:white;
}

.ai-section h2{
    font-size:52px;
    margin:0 0 18px;
    line-height:1.05;
}

.ai-section p{
    font-size:19px;
    line-height:1.7;
    color:#52637A;
    margin:0;
}

.ai-prompts{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    align-content:center;
}

.prompt-card{
    display:flex;
    align-items:center;
    gap:16px;
    background:white;
    border:1px solid rgba(44,134,211,.14);
    box-shadow:0 8px 22px rgba(44,134,211,.08);
    border-radius:16px;
    padding:24px;
    font-weight:800;
    color:#071735;
    transition:all .25s ease;
    cursor:pointer;
}

.prompt-card:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 34px rgba(44,134,211,.16);
}

/* =========================
   MOBILE SECTION
========================= */

.mobile-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    padding:100px 7%;
    background:#F8FBFE;
}

.mobile-left img{
    width:100%;
    max-width:340px;
    display:block;
    margin:auto;
    border-radius:36px;
    border:10px solid white;
    box-shadow:
        0 24px 70px rgba(44,134,211,.20),
        0 10px 30px rgba(0,0,0,.08);
}

.mobile-right h2{
    font-size:54px;
    line-height:1.05;
    margin:0 0 20px;
}

.mobile-right p{
    font-size:19px;
    line-height:1.7;
    color:#52637A;
    margin:0 0 36px;
}

.mobile-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.mobile-feature{
    display:flex;
    align-items:center;
    gap:16px;
    background:white;
    border:1px solid rgba(44,134,211,.12);
    box-shadow:0 8px 22px rgba(44,134,211,.08);
    border-radius:16px;
    padding:22px;
    font-weight:800;
}

.mobile-icon{
    width:44px;
    height:44px;
    min-width:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

/* =========================
   MODULE FEATURES
========================= */

.module-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    padding:80px 7%;
    background:white;
}

.feature-card{
    background:white;
    border:1px solid rgba(44,134,211,.12);
    box-shadow:0 8px 24px rgba(44,134,211,.08);
    border-radius:18px;
    padding:30px;
}

.feature-card h3{
    margin:18px 0 10px;
    font-size:21px;
}

.feature-card p{
    margin:0;
    color:#52637A;
    line-height:1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .hero,
    .ai-section,
    .mobile-section{
        grid-template-columns:1fr;
    }

    .benefits-strip{
        grid-template-columns:repeat(2,1fr);
    }

    .module-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .mobile-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:46px;
    }

    .ai-section h2,
    .mobile-right h2{
        font-size:42px;
    }

    .menu{
        display:none;
    }

 
}

@media(max-width:700px){

    .benefits-strip,
    .module-feature-grid,
    .ai-prompts{
        grid-template-columns:1fr;
    }

    .hero{
        padding:70px 24px;
    }

    .ai-section,
    .mobile-section,
    .module-feature-grid{
        padding-left:24px;
        padding-right:24px;
    }

    .hero h1{
        font-size:40px;
    }

    .mobile-right h2{
        font-size:36px;
    }
}