*{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Inter',sans-serif;
      background:#edf4fb;
      color:#0d1b4c;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    /* TOP BAR */
    .topbar{
      width:100%;
      height:58px;
      background:#232323;
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
    }

    .topbar h4{
      color:#fff;
      font-size:18px;
      font-weight:600;
    }

    .topbar .share-btn{
      position:absolute;
      right:18px;
      top:50%;
      transform:translateY(-50%);
      background:#635bff;
      color:#fff;
      border:none;
      padding:10px 18px;
      border-radius:8px;
      font-size:14px;
      cursor:pointer;
    }

    /* NAVBAR */
    .navbar{
      width:100%;
      height:80px;
      background:#ffffff;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 120px;
      border-bottom:1px solid #eef2f7;
    }

    .logo{
      font-size:20px;
      font-weight:500;
      color:#2c7df7;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:30px;
    }

    .nav-links a{
      font-size:14px;
      color:#606b85;
      font-weight:400;
      transition:0.3s;
    }

    .nav-links a.active{
      background:#edf3ff;
      color:#3a73ff;
      padding:10px 18px;
      border-radius:14px;
      box-shadow:0 0 20px rgba(58,115,255,0.15);
    }
    

    /* HERO */
    .hero{
      width:100%;
      padding-top:100px;
      padding-bottom:90px;
      text-align:center;
    }

    .hero-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:12px 20px;
      border-radius:40px;
      border:1px solid #bdd3ff;
      background:rgb(183 209 252 / 20%);
      color:#4c74d9;
      font-size:14px;
      font-weight:400;
      margin-bottom:45px;
      box-shadow:0 10px 25px rgba(84,118,255,0.08);
    
    }

    .hero h1{
      font-size:45px;
      line-height:1.1;
      font-weight:500;
      color:#12245d;
      max-width:1200px;
      margin:0 auto;
      letter-spacing:-2px;
    }

    .hero p{
          margin-top: 30px;
    font-size: 18px;
      color:#58657d;
      font-weight:400;
    }

    /* STATS */
    .stats{
      width:100%;
      display:flex;
      justify-content:center;
      gap:30px;
      margin-top:70px;
      flex-wrap:wrap;
    }

    .stat-card{
      width:340px;
      background:#fff;
      border-radius:22px;
      padding:40px 20px;
      box-shadow:0 20px 40px rgba(0,0,0,0.05);
    }

    .how-icons{
        font-size:24px;
    }

    .stat-icon{
      width:58px;
      height:58px;
      border-radius:16px;
      margin:0 auto 24px;
      background:linear-gradient(135deg,#4fa3f9,#09c5e7);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:24px;
      font-weight:700;
      box-shadow:0 12px 25px rgba(0,132,255,0.25);
    }

    .stat-card h2{
      font-size: 30px;
    font-weight: 200;
      color:#1180ff;
      margin-bottom:10px;
    }

    .stat-card span{
      font-size:15px;
      color:#66758b;
    }

    /* BUTTON */
    .hero-btn{
      margin-top:55px;
    }

    .hero-btn a{
      isplay: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 40px;
    border-radius: 18px;
    background: linear-gradient(90deg, #0065ae, #00adf0);
    color: #fff;
    font-size: 15px;
    /* font-weight: 500; */
    box-shadow: 0 18px 40px rgba(0, 132, 255, 0.25);
    }

    /* SECTION */
    .feature-section{
      width:82%;
      margin:40px auto 100px;
      background:#fff;
      border-radius:34px;
      padding:40px;
      box-shadow:0 25px 50px rgba(0,0,0,0.06);

      display:flex;
      align-items:center;
      gap:40px;
    }

    .feature-left{
      flex:1;
      background:#edf8ff;
      border-radius:26px;
      height:320px;

      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
    }

    .feature-icon{
      width:110px;
      height:110px;
      border-radius:24px;
      background:linear-gradient(135deg,#0065ae,#00adf0);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-size:42px;
      margin-bottom:26px;
      box-shadow:0 18px 40px rgba(0,132,255,0.25);
    }

    .feature-left p{
      font-size:28px;
      color:#5b687b;
    }

    .feature-right{
      flex:1;
      padding-right:20px;
    }

    .feature-right h2{
      font-size:24px;
      line-height:1.2;
      color:#13235d;
      margin-bottom:26px;
      font-weight:500;
    }

    .feature-right .desc{
      font-size:15px;
      line-height:1.8;
      color:#647287;
      margin-bottom:28px;
    }

    .feature-list{
      list-style:none;
    }

    .feature-list li{
     display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    color: #5f6e84;
    margin-bottom: 17px;
    align-items: center;
    }

    .dot{
       width: 12px;
    height: 8px;
    border-radius: 50%;
    background: #4e8cff;
    margin-top: 3px;
    box-shadow: 0 0 0 8px rgba(78, 140, 255, 0.15);
    }

    /* FOOTER */
    footer{
      text-align:center;
      padding:40px 20px;
      color:#69758b;
      font-size:16px;
      background:#f3f5f8;
      border-top:1px solid #e6edf5;
    }


.kenilverse-card-section{
    padding:80px 20px;
    background:#f6f9fc;
}

.kenilverse-card{
    max-width:1200px;
    margin:auto;
    background:#fff;
    padding:60px;
    border-radius:24px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.card-badge{
    display:inline-block;
    padding:10px 18px;
    background:#eef5ff;
    color:#0d6efd;
    font-size:13px;
    font-weight:700;
    border-radius:30px;
    letter-spacing:1px;
    margin-bottom:25px;
}

.kenilverse-card h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:25px;
    color:#0065ae;
    font-weight:700;
}

.intro-text{
    font-size:20px;
    line-height:1.8;
    color:#374151;
    margin-bottom:20px;
}

.kenilverse-card p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.impact-section2{
    /*margin-top:60px;*/
    width:82%;
    margin:auto;
    background:#f8fafc;
    border:1px solid #f8fafc;
    border-radius:34px;
    padding:20px 50px 42px;
}

.impact-section2 h3,
.why-section h3{
    font-size:32px;
    margin-bottom:30px;
    color:#111827;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.impact-box{
    padding:30px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    transition:.3s;
}

.impact-box:hover{
    transform:translateY(-5px);
}

.impact-box span{
    font-size:42px;
    font-weight:800;
    color:#1199dc;
    display:block;
    margin-bottom:15px;
}

.impact-box h4{
    margin-bottom:12px;
    font-size:22px;
    color:#111827;
}

.impact-box p{
    font-size:16px;
}

.why-section{
    margin-top:60px;
    padding:35px;
    background:#f8fafc;
    border-radius:18px;
}

.why-section blockquote{
    font-size:20px;
    line-height:1.5;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
    border-left:5px solid #0d6efd;
    padding-left:20px;
}

@media(max-width:768px){


    .impact-section2{
    /*margin-top:60px;*/
    width:100%;
    margin:auto;
    background:#f8fafc;
    border:1px solid #f8fafc;
    border-radius:34px;
    padding:20px 10px 42px;
}

.why-section {
    margin-top: 60px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 18px;
}

.impact-box {
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    transition: .3s;
}


    .kenilverse-card{
        padding:30px 20px;
    }

    .kenilverse-card h2{
        font-size:28px;
    }

    .impact-grid{
        grid-template-columns:1fr;
    }

    .why-section blockquote{
        font-size:22px;
    }
}

    /* RESPONSIVE */
    @media(max-width:1200px){

      .hero h1{
        font-size:58px;
      }

      .feature-section{
        flex-direction:column;
      }
    }

    @media(max-width:768px){

      .navbar{
        padding:0 20px;
        overflow-x:auto;
      }

      .nav-links{
        gap:18px;
      }

      .hero{
        padding:70px 20px;
      }

      .hero h1{
        font-size:42px;
      }

      .hero p{
        font-size:18px;
      }

      .stat-card{
        width:100%;
      }

      .feature-section{
        width:92%;
        padding:24px;
      }

      .feature-right h2{
        font-size:34px;
      }

      .feature-right .desc{
        font-size:18px;
      }

      .feature-list li{
        font-size:18px;
      }

      .feature-left{
        height:260px;
      }

      .feature-left p{
        font-size:20px;
      }
    }



    /* =========================
   PROBLEM PAGE
========================= */

.problem-page{
    width:100%;
    padding-top:90px;
    padding-bottom:100px;
    text-align:center;
}

.problem-page h1{
    font-size:45px;
    color:#0065ae;
    font-weight:500;
    margin-bottom:30px;
    letter-spacing:-2px;
}

.problem-subtitle{
    font-size:20px;
    color:#5d687f;
    margin-bottom:80px;
}

/* =========================
   PROBLEM STATS
========================= */

.problem-stats{
    width:100%;
    display:flex;
    justify-content:center;
    gap:28px;
    flex-wrap:wrap;
    margin-bottom:90px;
}

.problem-card{
    width:300px;
    background:#fff;
    border:1px solid #ffdede;
    border-radius:24px;
    padding:25px 28px;
    text-align:left;
    box-shadow:0 18px 40px rgba(0,0,0,0.04);
}

.problem-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    margin-bottom:26px;
    box-shadow:0 12px 25px rgba(255,92,0,0.22);
}

.problem-icon.orange{
    background:linear-gradient(135deg,#ff6b00,#ff2e4d);
}

.problem-card h2{
    font-size:27px;
    font-weight:400;
    color:#ff351f;
    margin-bottom:14px;
}

.problem-card h3{
    font-size:16px;
    color:#5c6780;
    font-weight:500;
    margin-bottom:10px;
}

.problem-card span{
    font-size:14px;
    line-height:1.6;
    color:#748198;
}

/* =========================
   FUNNEL SECTION
========================= */

.funnel-section{
    width:82%;
    margin:auto;
    background:#fff;
    border-radius:34px;
    padding:55px 55px 45px;
    box-shadow:0 25px 50px rgba(0,0,0,0.05);
}

.funnel-title{
    font-size:25px;
    color:#1a2d66;
    margin-bottom:60px;
    font-weight:500;
}

/* =========================
   FLOW
========================= */

.funnel-flow{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:24px;
    margin-bottom:50px;
    flex-wrap:wrap;
}

.funnel-box{
    width:230px;
    height:150px;
    border-radius:22px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.funnel-box h3{
    font-size:35px;
    font-weight:400;
    margin-bottom:10px;
}

.funnel-box span{
    font-size:16px;
}

.funnel-box.visitors{
    background:linear-gradient(90deg,#0065ae,#00adf0);
    color:#fff;
}

.funnel-box.leads{
    background:linear-gradient(90deg,#ff6900,#ff2951);
    color:#fff;
}

.funnel-box.lost{
    background:#dfe5ef;
    color:#526177;
}

.funnel-line{
    width:70px;
    height:3px;
    background:#f08989;
}

/* =========================
   LOST BAR
========================= */

.lost-bar{
    width:86%;
    margin:0 auto 60px;
    background:#fff3f3;
    border:1px solid #ffd7d7;
    border-radius:18px;
    padding:28px;
    font-size:19px;
    color:#ff2f2f;
    font-weight:400;
}

/* =========================
   INFO GRID
========================= */

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.info-box{
    background:#fafafa;
    border:1px solid #ececec;
    border-radius:20px;
    padding:34px;
    text-align:left;
}

.blue-box{
    background:#f4f8ff;
    border:1px solid #d9e8ff;
}

.info-box h3{
    font-size:18px;
    color:#202b45;
    margin-bottom:24px;
    font-weight:500;
}

.info-box ul{
    padding-left:24px;
}

.info-box ul li{
    font-size:16px;
    line-height:1.9;
    color:#6b778f;
    margin-bottom:10px;
}

.info-box ul li::marker{
    color:#ff3939;
}

.blue-box ul li::marker{
    color:#3f82ff;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .problem-page h1{
        font-size:56px;
    }

    .funnel-section{
        width:92%;
    }

    .info-grid{
        grid-template-columns:1fr;
    }
    
}

@media(max-width:768px){

    .problem-page{
        padding:70px 20px;
    }

    .problem-page h1{
        font-size:42px;
    }

    .problem-subtitle{
        font-size:18px;
    }

    .problem-card{
        width:100%;
    }

    .funnel-title{
        font-size:34px;
    }

    .lost-bar{
        width:100%;
        font-size:20px;
    }

    .funnel-box{
        width:100%;
    }

    .info-box h3{
        font-size:24px;
    }

    .info-box ul li{
        font-size:18px;
    }
}




/* =========================================
   INDUSTRY PAIN POINTS PAGE
========================================= */

.pain-page{
    width:100%;
    padding-top:90px;
    padding-bottom:120px;
    text-align:center;
}

.pain-page h1{
    font-size:45px;
    line-height:1.1;
    font-weight:500;
    color:#0065ae;
    margin-bottom:28px;
    letter-spacing:-2px;
}

.pain-subtitle{
    font-size:18px;
    color:#5f6b82;
    margin-bottom:80px;
}

/* =========================================
   GRID
========================================= */

.pain-grid{
    width:82%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-bottom:70px;
}

/* =========================================
   CARD
========================================= */

.pain-card{
    background:#ffffff;
    border:1px solid #e8eef7;
    border-radius:22px;
    padding:23px 21px 20px;
    text-align:left;
    box-shadow:0 15px 35px rgba(0,0,0,0.04);
    transition:0.3s;
}

.pain-card:hover{
    transform:translateY(-4px);
}

.pain-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:linear-gradient(135deg,#0065ae,#00adf0);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:24px;
    font-weight:600;
    margin-bottom:26px;
    box-shadow:0 14px 30px rgba(35,117,255,0.22);
}

.pain-card h2{
    font-size: 20px;
    line-height: 1.5;
    color: #29344d;
    font-weight: 500;
    margin-bottom: 10px;
}

.pain-card p{
    font-size: 14px;
    line-height: 1.6;
    color: #6d7890;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #edf1f7;
}

.impact-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 16px;
    border-radius:12px;
    background:#fff1f1;
    border:1px solid #ffd7d7;
    color:#ff5252;
    font-size: 13px;
    font-weight: 400;
}

/* =========================================
   IMPACT SECTION
========================================= */

.impact-section{
    width:82%;
    margin:auto;
    background:#fff8f5;
    border:1px solid #ffe4de;
    border-radius:34px;
    padding:60px 50px 42px;
}

.impact-heading{
    font-size:30px;
    line-height:1.2;
    color:#ff4b1f;
    font-weight:500;
    margin-bottom:20px;
}

.impact-subheading{
    font-size:20px;
    color:#56627a;
    margin-bottom:40px;
}

/* =========================================
   MAIN CENTER CARD
========================================= */

.impact-main-card{
    width:56%;
    margin:0 auto 40px;
    background:#ffffff;
    border:1px solid #ffd8d0;
    border-radius:24px;
    padding:34px 40px;
    box-shadow:0 20px 40px rgba(255,105,80,0.08);
}

.impact-main-card h3{
    font-size:48px;
    line-height:1;
    color:#ff4b1f;
    font-weight:300;
    margin-bottom:18px;
}

.impact-main-card h4{
    font-size:22px;
    color:#303b54;
    font-weight:400;
    margin-bottom:18px;
}

.impact-main-card p{
    font-size:14px;
    line-height:1.7;
    color:#758198;
}

/* =========================================
   BOTTOM BOXES
========================================= */

.impact-bottom-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    width:78%;
    margin:auto;
}

.impact-small-box{
    background:#ffffff;
    border:1px solid #ffe1db;
    border-radius:20px;
    padding:20px 24px;
    text-align:center;
}

.impact-small-box h4{
    font-size:22px;
    line-height:1.4;
    color:#ff3f2d;
    font-weight:400;
    margin-bottom:10px;
}

.impact-small-box p{
    font-size:14px;
    line-height:1.7;
    color:#68758d;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .pain-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .impact-main-card{
        width:80%;
    }

    .impact-bottom-grid{
        width:100%;
    }
}

@media(max-width:768px){

    .pain-page{
        padding:70px 20px;
    }

    .pain-page h1{
        font-size:42px;
    }

    .pain-subtitle{
        font-size:18px;
        margin-bottom:50px;
    }

    .pain-grid{
        width:100%;
        grid-template-columns:1fr;
    }

    .impact-section{
        width:100%;
        padding:40px 20px;
    }

    .impact-heading{
        font-size:34px;
    }

    .impact-subheading{
        font-size:18px;
    }

    .impact-main-card{
        width:100%;
        padding:28px 20px;
    }

    .impact-main-card h3{
        font-size:48px;
    }

    .impact-main-card h4{
        font-size:20px;
    }

    .impact-bottom-grid{
        grid-template-columns:1fr;
    }
}



/* =========================================
   INSIGHT PAGE
========================================= */

.insight-page{
    width:100%;
    padding-top:90px;
    padding-bottom:120px;
    text-align:center;
}

.insight-page h1{
    font-size:45px;
    line-height:1.1;
    color:#0065ae;
    font-weight:500;
    margin-bottom:28px;
    letter-spacing:-2px;
}

.insight-subtitle{
    font-size:20px;
    color:#5d6980;
    margin-bottom:70px;
}

/* =========================================
   TOP COMPARISON
========================================= */

.comparison-wrapper{
    width: 82%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 70px;
    padding: 10px;
    border: 1px solid #fff;
    background: #fff;
}

.comparison-card{
    padding:34px 30px 26px;
    text-align:left;
    border:1px solid #edf1f7;
}

.traditional-card{
    background:#fff8f6;
    border-radius:20px;
}

.optimized-card{
    background:#f2fbff;
    border-radius:20px;
}

.comparison-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:24px;
    margin-bottom:24px;
    box-shadow:0 14px 30px rgba(0,0,0,0.12);
}

.red-icon{
    background:linear-gradient(135deg,#0065ae,#00adf0);
}

.blue-icon{
    background:linear-gradient(135deg,#0065ae,#00adf0);
}

.comparison-card h2{
    font-size:22px;
    color:#ff3b2e;
    font-weight:600;
    margin-bottom:28px;
}

.blue-title{
    color:#256cff !important;
}

.comparison-row{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.percent{
    min-width:54px;
    height:44px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:500;
}

.red-percent{
    background:#ffe3e3;
    color:#ff4a4a;
}

.blue-percent{
    background:#dce9ff;
    color:#256cff;
}

.comparison-row p{
    font-size:16px;
    color:#5d6880;
}

.outcome-box{
    margin-top:26px;
    border-radius:18px;
    padding:16px 18px;
    background:#ffffff;
}

.red-outcome{
    border:1px solid #ffd5cf;
}

.blue-outcome{
    border:1px solid #d6ebff;
}

.outcome-box small{
    display:block;
    font-size:13px;
    margin-bottom:10px;
}

.red-outcome small{
    color:#ff4c39;
}

.blue-outcome small{
    color:#256cff;
}

.outcome-box h4{
    font-size:16px;
    color:#404c63;
    font-weight:400;
}

/* =========================================
   TRUTH SECTION
========================================= */

.truth-section{
    width:82%;
    margin:auto;
    background:#effcff;
    border:1px solid #d9f4fb;
    border-radius:34px;
    padding:50px 40px;
    margin-bottom:60px;
}

.truth-icon{
    width:74px;
    height:74px;
    margin:0 auto 24px;
    border-radius:20px;
    background:linear-gradient(135deg,#0065ae,#00adf0);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:34px;
    box-shadow:0 18px 40px rgba(36,118,255,0.25);
}

.truth-section h2{
    font-size:28px;
    color:#1580e7;
    font-weight:500;
    margin-bottom:26px;
}

.truth-section h3{
    font-size:22px;
    line-height:1.7;
    color:#445065;
    font-weight:400;
    margin-bottom:22px;
}

.truth-section p{
    font-size:18px;
    line-height:1.8;
    color:#68758d;
}

/* =========================================
   BOTTOM GRID
========================================= */

.bottom-insight-grid{
    width:82%;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

/* =========================================
   WHY BOX
========================================= */

.why-matters-box{
    background:#ffffff;
    border:1px solid #edf1f7;
    border-radius:24px;
    padding:36px 30px;
    text-align:left;
    min-height:480px;
}

.why-matters-box h2{
    font-size:22px;
    color:#2d374f;
    font-weight:600;
    margin-bottom:34px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:34px;
}

.why-dot{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#dfeaff;
    color:#256cff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    margin-top:2px;
}

.why-item h4{
    font-size:18px;
    color:#4b566e;
    font-weight:500;
    margin-bottom:8px;
}

.why-item p{
    font-size:15px;
    color:#7a869c;
    line-height:1.7;
}

/* =========================================
   MATH BOX
========================================= */

.math-box{
    background:linear-gradient(135deg,#0065ae,#00adf0);
    border-radius:24px;
    padding:36px 30px;
    text-align:left;
    color:#ffffff;
}

.math-box h2{
    font-size:22px;
    font-weight:600;
    margin-bottom:26px;
}

.math-card{
    background:rgba(255,255,255,0.16);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:18px;
    margin-bottom:20px;
}

.math-card small{
    display:block;
    font-size:13px;
    color:#dbeeff;
    margin-bottom:12px;
}

.math-card h3{
    font-size:18px;
    line-height:1.6;
    color:#ffffff;
    font-weight:500;
    margin-bottom:12px;
}

.math-card p{
    font-size:14px;
    color:#dceeff;
}

.result-card h3{
    margin-bottom:0;
    font-size:20px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

    .comparison-wrapper{
        grid-template-columns:1fr;
    }

    .bottom-insight-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .insight-page{
        padding:70px 20px;
    }

    .insight-page h1{
        font-size:42px;
    }

    .insight-subtitle{
        font-size:18px;
        margin-bottom:50px;
    }

    .comparison-wrapper{
        width:100%;
    }

    .truth-section{
        width:100%;
        padding:40px 20px;
    }

    .truth-section h2{
        font-size:32px;
    }

    .truth-section h3{
        font-size:18px;
    }

    .truth-section p{
        font-size:16px;
    }

    .bottom-insight-grid{
        width:100%;
    }

    .why-matters-box,
    .math-box{
        min-height:auto;
    }
}

/* =========================================
   APPROACH PAGE
========================================= */

.approach-page{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:70px 20px 120px;
}

.approach-page h1{
  text-align:center;
  font-size:45px;
  font-weight:600;
  color:#0065ae;
  margin-bottom:18px;
}

.approach-subtitle{
  text-align:center;
  font-size:20px;
  color:#6f7b95;
  margin-bottom:60px;
}

/* =========================================
   APPROACH CARD
========================================= */

.approach-card{
  background:#ffffff;
  border:1px solid #e7eef9;
  border-radius:26px;
  padding:34px;
  margin-bottom:28px;
  box-shadow:0 4px 20px rgba(37,99,235,0.04);
}

.step-header{
  display:flex;
  align-items:flex-start;
  gap:22px;
}

.step-icon{
  width:60px;
  height:60px;
  min-width:60px;
  border-radius:18px;
  background: linear-gradient(135deg, #0065ae, #00adf0);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  font-weight:700;
  box-shadow:0 10px 25px rgba(37,99,235,0.25);
}

.step-badge{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:#eef4ff;
  color:#4c6fff;
  font-size:13px;
  font-weight:600;
  margin-bottom:12px;
}

.step-header h2{
  font-size:22px;
  color:#14213d;
  margin-bottom:8px;
  font-weight:500;
}

.step-description{
  margin-top:18px;
  margin-left:82px;
  font-size:18px;
  color:#6c7891;
  line-height:1.7;
}

/* =========================================
   DELIVERABLES
========================================= */

.deliverables-box{
  margin-top:28px;
  margin-left:82px;
  background:#f5f8fd;
  border-radius:18px;
  padding:24px 28px;
}

.deliverables-box small{
  display:block;
  color:#4c6fff;
  font-size:14px;
  font-weight:400;
  margin-bottom:18px;
}

.deliverables-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.deliverables-grid ul{
  padding-left:18px;
}

.deliverables-grid li{
  margin-bottom:14px;
  color:#5e6b85;
  font-size:16px;
  line-height:1.6;
}

/* =========================================
   DISTINCTION SECTION
========================================= */

.distinction-section{
  margin-top:70px;
  background:#effbff;
  border:1px solid #dff3f8;
  border-radius:32px;
  padding:60px;
}

.distinction-section h2{
  text-align: center;
    font-size: 30px;
    color: #0092b8;
    margin-bottom: 45px;
    font-weight: 600;
}

.distinction-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.distinction-card{
  border-radius:22px;
  padding:36px;
}

.traditional-distinction{
  background:#ffffff;
}

.kenilverse-distinction{
  background:linear-gradient(135deg,#0065ae,#00adf0);
  color:#fff;
}

.distinction-card h3{
  font-size:20px;
  margin-bottom:20px;
  font-weight:600;
}

.distinction-card ul{
  list-style:none;
  padding:0;
}

.distinction-card li{
  margin-bottom:18px;
  font-size:15px;
  line-height:1.5;
}

.traditional-distinction li{
  color:#6c7891;
}

.kenilverse-distinction li{
  color:#ffffff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:992px){

  .approach-page h1{
    font-size:42px;
  }

  .step-header h2{
    font-size:28px;
  }

  .deliverables-grid{
    grid-template-columns:1fr;
  }

  .distinction-grid{
    grid-template-columns:1fr;
  }

  .distinction-section{
    padding:35px 25px;
  }

}

@media(max-width:768px){

  .approach-page{
    padding:50px 16px 100px;
  }

  .approach-page h1{
    font-size:34px;
  }

  .approach-subtitle{
    font-size:17px;
  }

  .approach-card{
    padding:24px;
  }

  .step-header{
    gap:16px;
  }

  .step-icon{
    width:48px;
    height:48px;
    min-width:48px;
    font-size:18px;
  }

  .step-header h2{
    font-size:22px;
  }

  .step-description{
    margin-left:0;
    margin-top:20px;
    font-size:16px;
  }

  .deliverables-box{
    margin-left:0;
    padding:20px;
  }

  .distinction-section h2{
    font-size:30px;
  }

  .distinction-card{
    padding:26px;
  }

}





/* =========================================
   ECONOMICS PAGE
========================================= */

.economics-page{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:80px 20px 120px;
}

.economics-page h1{
  text-align:center;
  font-size:45px;
  line-height:1.15;
  color:#0065ae;
  font-weight:600;
  margin-bottom:20px;
}

.economics-subtitle{
  text-align:center;
  font-size:20px;
  color:#6f7b95;
  margin-bottom:70px;
}

/* =========================================
   COMPARISON GRID
========================================= */

.economics-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  margin-bottom:70px;
}

.economics-card{
  border-radius:34px;
  padding:34px;
}

.before-card{
  background:#fff3f1;
  border:1px solid #ffd8d2;
}

.after-card{
  background:#eef9ff;
  border:1px solid #d7efff;
  box-shadow:0 10px 30px rgba(37,99,235,0.08);
}

.model-badge{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  margin-bottom:28px;
}

.red-badge{
  background:#ffe5e1;
  color:#ff5b4d;
  border:1px solid #ffc9c1;
}

.blue-badge{
  background:#e5f0ff;
  color:#4d7cff;
  border:1px solid #c9ddff;
}

.economics-card h2{
  font-size: 35px;
    color: #111827;
    margin-bottom: 30px;
    font-weight: 500;
}

/* =========================================
   STAT BOX
========================================= */

.stat-box{
  background:#fff;
  border-radius:18px;
  padding:22px 24px;
  margin-bottom:22px;
  border:1px solid #edf1f7;
}

.stat-box small{
  display:block;
  font-size:14px;
  margin-bottom:12px;
  font-weight:500;
}

.before-card .stat-box small{
  color:#ff5b4d;
}

.after-card .stat-box small{
  color:#4d7cff;
}

.stat-box h3{
  font-size:32px;
  color:#1f2937;
  font-weight:300;
  margin-bottom:6px;
}

.stat-box p{
  font-size:14px;
  color:#8a94a9;
}

.green-text{
  color:#16a34a !important;
}

/* =========================================
   VALUE BOX
========================================= */

.value-box{
  border-radius:18px;
  padding:28px;
  text-align:center;
  margin-top:26px;
}

.before-value{
  background:#ffe3e0;
  border:1px solid #ffc9c1;
}

.after-value{
  background:linear-gradient(135deg,#0065ae,#00adf0);
  color:#fff;
}

.value-box small{
  display:block;
  font-size:14px;
  margin-bottom:14px;
}

.before-value small{
  color:#ff5b4d;
}

.after-value small{
  color:#fff;
}

.value-box h3{
  font-size:32px;
  font-weight:400;
}

.before-value h3{
  color:#ff3d2e;
}

/* =========================================
   BOTTOM LINE
========================================= */

.bottom-line{
  background:#eefcf2;
  border:1px solid #d8f5df;
  border-radius:34px;
  padding:60px;
}

.bottom-line h2{
  text-align:center;
  color:#16a34a;
  font-size:52px;
  margin-bottom:50px;
  font-weight:400;
}

.bottom-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-bottom:40px;
}

.bottom-card{
  background:#fff;
  border-radius:22px;
  padding:20px;
  text-align:center;
  width:300px;
}

.bottom-card small{
  display:block;
  color:#16a34a;
  font-size:13px;
  margin-bottom:16px;
  font-weight:300;
}

.bottom-card h3{
  font-size: 35px;
    color: #16a34a;
    font-weight: 300;
    margin-bottom: 10px;
}

.bottom-card p{
  color:#7b879f;
  font-size:17px;
}

.bottom-result{
  text-align:center;
  font-size:18px;
  color:#5f6d85;
}

.bottom-result span{
  color:#16a34a;
  font-weight:600;
  margin:0 14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

  .economics-grid{
    grid-template-columns:1fr;
  }

  .bottom-grid{
    grid-template-columns:1fr;
  }

  .bottom-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    text-align: center;
    width: 100%;
}

}

@media(max-width:768px){

  .economics-page{
    padding:60px 16px 100px;
  }

  .economics-page h1{
    font-size:40px;
  }

  .economics-subtitle{
    font-size:17px;
  }

  .economics-card{
    padding:24px;
  }

  .economics-card h2{
    font-size:32px;
  }

  .stat-box h3{
    font-size:38px;
  }

  .value-box h3{
    font-size:40px;
  }

  .bottom-line{
    padding:35px 22px;
  }

  .bottom-line h2{
    font-size:34px;
  }

  .bottom-card h3{
    font-size:42px;
  }

  .bottom-result{
    font-size:18px;
    line-height:1.7;
  }

   .bottom-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    text-align: center;
    width: 350px;
}

}


/* =========================================
   HOW IT WORKS PAGE
========================================= */

.how-works-page{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:80px 20px 120px;
}

.how-works-page h1{
  text-align:center;
  font-size:45px;
  color:#0065ae;
  font-weight:600;
  margin-bottom:20px;
}

.how-subtitle{
  text-align:center;
  font-size:20px;
  color:#6f7b95;
  margin-bottom:80px;
}

/* =========================================
   TIMELINE
========================================= */

.timeline-wrapper{
  position:relative;
}

.timeline-line{
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:4px;
  height:100%;
  background:#2f6bff;
  border-radius:50px;
}

.timeline-row{
  width:100%;
  display:flex;
  margin-bottom:80px;
}

.timeline-row.left{
  justify-content:flex-start;
}

.timeline-row.right{
  justify-content:flex-end;
}

.timeline-card{
  width:48%;
  background:#fff;
  border:1px solid #e7eef9;
  border-radius:24px;
  padding:32px;
  box-shadow:0 6px 22px rgba(37,99,235,0.05);
}

.timeline-icon{
  width:60px;
  height:60px;
  border-radius:16px;
  background:linear-gradient(135deg,#0065ae,#00adf0);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  font-weight:700;
  margin-bottom:28px;
  box-shadow:0 10px 25px rgba(37,99,235,0.25);
}

.timeline-card h2{
  font-size:25px;
  color:#111827;
  margin-bottom:18px;
  font-weight:500;
}

.timeline-card p{
  font-size:14px;
  color:#6c7891;
  line-height:1.7;
  margin-bottom:20px;
}

.focus-box{
  background:#f4f7fc;
  border:1px solid #e8edf5;
  border-radius:14px;
  padding:16px 18px;
  color:#4d7cff;
  font-size:14px;
  font-weight:400;
}

/* =========================================
   STATS
========================================= */

.works-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-top:40px;
}

.works-stat-card{
  background: linear-gradient(135deg, #0065ae, #00adf0);
  border-radius:24px;
  padding:34px;
  color:#fff;
  box-shadow:0 14px 30px rgba(37,99,235,0.18);
}

/* .works-stat-card{
    text-align:center;
} */

.stat-icon-how{
  width:50px;
  height:50px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.4);
   display:flex;
    justify-content:center;
    align-items:center;
  margin-bottom:24px;
  font-size:18px;
}

.works-stat-card h3{
  font-size:28px;
  font-weight:400;
  margin-bottom:10px;
}

.works-stat-card h4{
  font-size:16px;
  font-weight:400;
  margin-bottom:12px;
}

.works-stat-card p{
  font-size:13px;
  line-height:1.7;
  color:rgba(255,255,255,.88);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

  .timeline-line{
    left:20px;
  }

  .timeline-row{
    justify-content:flex-start !important;
    padding-left:60px;
  }

  .timeline-card{
    width:100%;
  }

  .works-stats{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .how-works-page{
    padding:60px 16px 100px;
  }

  .how-works-page h1{
    font-size:40px;
  }

  .how-subtitle{
    font-size:17px;
    margin-bottom:60px;
  }

  .timeline-card{
    padding:24px;
  }

  .timeline-card h2{
    font-size:28px;
  }

  .timeline-card p{
    font-size:15px;
  }

  .works-stat-card{
    padding:26px;
  }

  .works-stat-card h3{
    font-size:40px;
  }

}


/* ============================= */
/* IDEAL CLIENT SECTION */
/* ============================= */

.ideal-client-section{
    width: 100%;
    padding: 90px 160px;
    background: #f5f8fc;
}

.section-heading{
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h1{
    font-size: 45px;
    line-height: 1.1;
    color: #0065ae;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-heading p{
    font-size: 22px;
    color: #5e6b84;
    max-width: 960px;
    margin: auto;
    line-height: 1.7;
}

.section-title{
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2{
    font-size: 30px;
    color: #111827;
    font-weight: 600;
    margin-top: 70px;
}


.second-title{
    margin-top: 90px;
}

.ideal-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ideal-card{
    background: white;
    border: 1px solid #e7edf7;
    border-radius: 22px;
    padding: 26px;
    transition: .3s;
}

.ideal-card:hover{
    transform: translateY(-4px);
}

/* .ideal-icon{
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg,#0ea5ff,#2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(37,99,235,.18);
} */

.ideal-icon{
      width:55px;
      height:55px;
      border-radius:14px;

      background:linear-gradient(135deg,#0065ae,#00adf0);

      display:flex;
      align-items:center;
      justify-content:center;

      color:#fff;
      font-size:20px;

      margin-bottom:18px;

      box-shadow:
        0 8px 18px rgba(0,123,255,0.25),
        inset 0 1px 1px rgba(255,255,255,0.25);

      border:1px solid rgba(255,255,255,0.15);
    }



.ideal-card h3{
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 14px;
    font-weight: 500;
}

.ideal-card p{
    font-size: 15px;
    line-height: 1.7;
    color: #667085;
}

/* WHY WRAPPER */

.why-wrapper{
    margin-top: 90px;
    background: #eef7ff;
    border: 1px solid #dfefff;
    border-radius: 34px;
    padding: 60px;
}

.why-wrapper h2{
    text-align: center;
    font-size: 30px;
    color: #007fd6;
    margin-bottom: 50px;
    font-weight: 600;
}

.why-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}

.why-card{
    background: white;
    border-radius: 24px;
    border: 1px solid #e7edf7;
    padding: 30px;
}

.why-card h3{
    font-size: 20px;
    margin-bottom: 18px;
    color: #1f2937;
    font-weight: 500;
}

.why-card p{
    font-size: 15px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 26px;
}

.why-tag{
    width: 100%;
    background: #f4f7fb;
    border: 1px solid #e7edf7;
    border-radius: 14px;
    padding: 18px 20px;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 400;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:1200px){

    .ideal-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .section-heading h1{
        font-size: 54px;
    }

    .why-wrapper h2{
        font-size: 42px;
    }
}

@media(max-width:768px){

    .ideal-client-section{
        padding: 70px 24px;
    }

    .ideal-grid,
    .why-grid{
        grid-template-columns: 1fr;
    }

    .section-heading h1{
        font-size: 42px;
    }

    .section-heading p{
        font-size: 18px;
    }

    .section-title h2{
        font-size: 32px;
    }

    .ideal-card h3{
        font-size: 24px;
    }

    .why-wrapper{
        padding: 30px 20px;
    }

    .why-wrapper h2{
        font-size: 34px;
    }

    .why-card h3{
        font-size: 24px;
    }
}


/* ========================================= */
/* WHY THIS WORKS SECTION */
/* ========================================= */

.why-works-section{
    width: 100%;
    padding: 90px 150px;
    background: #f5f8fc;
}

.why-heading{
    text-align: center;
    margin-bottom: 60px;
}

.why-heading h1{
    font-size: 45px;
    font-weight: 600;
    color: #0065ae;
    margin-bottom: 18px;
}

.why-heading p{
    font-size: 20px;
    color: #5e6b84;
}

/* WORK CARD */

.why-work-card{
    width: 100%;
    background: white;
    border: 1px solid #e7edf7;
    border-radius: 24px;
    padding: 34px;
    display: flex;
    gap: 26px;
    margin-bottom: 28px;
}

.why-icon{
       min-width: 80px;
    height: 80px;
    border-radius: 18px;
       background: linear-gradient(135deg, #0065ae, #00adf0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(37,99,235,.18);
}

.why-content{
    width: 100%;
}

.why-content h2{
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 14px;
    font-weight: 500;
}

.why-content p{
    font-size: 17px;
    line-height: 1.8;
    color: #667085;
    margin-bottom: 24px;
}

.why-tags{
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.why-chip{
    background: #f4f7fb;
    border: 1px solid #e7edf7;
    padding: 16px 20px;
    border-radius: 14px;
    color: #667085;
    font-size: 15px;
    flex: 1;
    min-width: 220px;
}

/* ADVANTAGE GRID */

.advantage-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
    margin-top: 60px;
}

.advantage-card{
    background: #eef7ff;
    border: 1px solid #dfefff;
    border-radius: 26px;
    padding: 36px;
}

.advantage-card h2{
    font-size: 24px;
    margin-bottom: 34px;
    color: #1f2937;
    font-weight: 500;
}

.miss-card{
    background: linear-gradient(135deg,#3478ff,#0ea5e9);
    border-radius: 26px;
    padding: 36px;
}

.miss-card h2{
    font-size: 40px;
    margin-bottom: 34px;
    color: white;
}

.adv-item{
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.adv-item span{
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3b82f6;
    margin-top: 8px;
    position: relative;
}

.adv-item span::after{
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.adv-item h3{
        font-size: 16px;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 400;
}

.custom-icon {
     font-size: 10px;
    color: #2f80ff;
    background: #dbe8ff;
    border-radius: 15px;
    padding: 7px;
    height: 23px;
}


.adv-item p{
    font-size: 14px;
    line-height: 1.8;
    color: #667085;
    font-weight: 200;
}

.white h3,
.white p{
    color: white;
}

/* BOTTOM LINE */

.bottom-line{
    margin-top: 60px;
    background: #edf9ef;
    border: 1px solid #daf0dd;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}

.bottom-line h2{
    font-size: 30px;
    color: #0f9f54;
    margin-bottom: 24px;
}

.bottom-line p{
   max-width: 760px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

.bottom-stats{
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.bottom-stat{
    background: white;
    border-radius: 20px;
    padding: 34px 44px;
    min-width: 260px;
}

.bottom-stat h3{
    font-size: 30px;
    color: #0f9f54;
    margin-bottom: 12px;
    font-weight: 400;
}

.bottom-stat span{
    font-size: 14px;
    color: #667085;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1200px){

    .advantage-grid{
        grid-template-columns: 1fr;
    }

    .why-heading h1{
        font-size: 54px;
    }
}

@media(max-width:768px){

    .why-works-section{
        padding: 70px 22px;
    }

    .why-work-card{
        flex-direction: column;
    }

    .why-heading h1{
        font-size: 42px;
    }

    .why-heading p{
        font-size: 18px;
    }

    .why-content h2{
        font-size: 28px;
    }

    .why-chip{
        min-width: 100%;
    }

    .advantage-card,
    .miss-card,
    .bottom-line{
        padding: 30px 22px;
    }

    .advantage-card h2,
    .miss-card h2{
        font-size: 30px;
    }

    .bottom-line h2{
        font-size: 36px;
    }

    .bottom-line p{
        font-size: 18px;
    }

    .bottom-stat{
        width: 100%;
    }
}


/* ======================================== */
/* ENGAGEMENT MODEL SECTION */
/* ======================================== */

.engagement-section{
    width: 100%;
    padding: 90px 150px;
    background: #f5f8fc;
}

.engagement-heading{
    text-align: center;
    margin-bottom: 60px;
}

.engagement-heading h1{
    font-size: 45px;
    font-weight: 600;
    color: #0065ae;
    margin-bottom: 18px;
}

.engagement-heading p{
    font-size: 20px;
    color: #5e6b84;
}

/* ENGAGEMENT CARD */

.engagement-card{
    width: 100%;
    background: white;
    border: 1px solid #e7edf7;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 34px;
}

.engagement-top{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.engagement-left{
    display: flex;
    gap: 24px;
}

.engagement-icon{
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg,#0065ae,#00adf0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(37,99,235,.18);
}

.engagement-left h2{
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 500;
}

.engagement-left p{
    font-size: 18px;
    line-height: 1.8;
    color: #667085;
}

.engagement-badge{
    height: fit-content;
    background: #f4f7fb;
    border: 1px solid #e7edf7;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 15px;
    color: #3b82f6;
    white-space: nowrap;
}

/* DELIVERABLE BOX */

.deliverable-box{
    background: #f7f9fc;
    border: 1px solid #e7edf7;
    border-radius: 18px;
    padding: 28px;
}

.deliverable-box h4{
    color: #3b82f6;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 400;
}

.deliverable-box ul{
    list-style: none;
}

.deliverable-box ul li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    color: #667085;
    font-size: 16px;
}

.deliverable-box ul li::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
    left: 0;
    top: 8px;
    box-shadow: 0 0 0 4px rgba(59,130,246,.15);
}

/* GRID */

.engagement-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
    margin-top: 50px;
}

/* LEFT CARD */

.investment-card{
    background: #eef7ff;
    border: 1px solid #dfefff;
    border-radius: 26px;
    padding: 38px;
}

.investment-card h2{
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 34px;
    font-weight: 500;
}

/* RIGHT CARD */

.protection-card{
    background: #edf9ef;
    border: 1px solid #daf0dd;
    border-radius: 26px;
    padding: 38px;
}

.protection-card h2{
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 34px;
    font-weight: 500;
}




.investment-item{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.investment-icon{
    min-width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg,#0065ae,#00adf0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.green-icon{
    min-width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.investment-item h3{
        font-size: 18px;
    margin-bottom: 10px;
    color: #1f2937;
    font-weight: 400;
}

.investment-item p{
    font-size: 15px;
    line-height: 1.8;
    color: #667085;
}

/* WHAT YOU GET */

.what-you-get{
    margin-top: 60px;
        background: linear-gradient(135deg, #0065ae, #00adf0);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
}

.what-you-get h2{
    font-size: 30px;
    color: white;
    margin-bottom: 40px;
    font-weight: 500;
}

.what-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.what-card{
    background: #33b9ed;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 22px;
    padding: 34px 24px;
    backdrop-filter: blur(10px);
}

.what-card h3{
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    font-weight: 300;
}

.what-card p{
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.88);
}

.what-bottom{
    margin-top: 42px;
    font-size: 18px;
    line-height: 1.8;
    color: white;
    max-width: 700px;
    margin-inline: auto;
}

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */

@media(max-width:1200px){

    .what-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .engagement-grid{
        grid-template-columns: 1fr;
    }

    .engagement-heading h1{
        font-size: 54px;
    }

    .engagement-badge {
    height: fit-content;
    width: fit-content;
    background: #f4f7fb;
    border: 1px solid #e7edf7;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 15px;
    color: #3b82f6;
    white-space: nowrap;
}
}

@media(max-width:768px){

    .engagement-section{
        padding: 70px 22px;
    }

    .engagement-badge {
    height: fit-content;
    width: fit-content;
    background: #f4f7fb;
    border: 1px solid #e7edf7;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 15px;
    color: #3b82f6;
    white-space: nowrap;
}

    .engagement-top{
        flex-direction: column;
    }

    .engagement-left{
        flex-direction: column;
    }

    .engagement-heading h1{
        font-size: 42px;
    }

    .engagement-heading p{
        font-size: 18px;
    }

    .engagement-left h2{
        font-size: 28px;
    }

    .investment-card,
    .protection-card,
    .what-you-get{
        padding: 30px 22px;
    }

    .investment-card h2,
    .protection-card h2{
        font-size: 30px;
    }

    .what-you-get h2{
        font-size: 38px;
    }

    .what-grid{
        grid-template-columns: 1fr;
    }

    .what-bottom{
        font-size: 18px;
    }
}


/* CONTACT SECTION */

.contact-section{
    width:100%;
    padding:90px 0 120px;
    background:#f3f7fc;
}

.contact-header{
    text-align:center;
    margin-bottom:55px;
}

.contact-header h1{
    font-size:45px;
    line-height:1.1;
    font-weight:600;
    color:#0065ae;
    margin-bottom:18px;
    letter-spacing:-2px;
}

.contact-header .sub{
    font-size:20px;
    color:#55657f;
    margin-bottom:16px;
    font-weight:400;
}

.contact-header .small{
    font-size:15px;
    color:#7a879d;
}

.contact-grid{
    width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns: 1fr 0.95fr;
    gap:35px;
}

/* LEFT FORM */

.contact-form-box{
    background:#fff;
    border-radius:28px;
    padding:38px;
    border:1px solid #e4ebf5;
    min-height:900px;
}

.form-group{
    margin-bottom:28px;
}

.form-group label{
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: #3e4d67;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:1px solid #dbe5f1;
    background:#fff;
    border-radius:16px;
    padding:18px 20px;
    font-size:16px;
    color:#24324b;
    outline:none;
    font-family:'italic',sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#a3afc2;
}

.form-group textarea{
    resize:none;
    height:110px;
    line-height:1.7;
}

.form-group select{
    color:#6b778c;
    cursor:pointer;
}

.audit-btn{
        width: 100%;
    height: 55px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #0065ae, #00adf0);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
    font-family: 'Inter', sans-serif;
}

.audit-btn:hover{
    transform:translateY(-2px);
}

/* RIGHT */

.contact-right{
    display:flex;
    flex-direction:column;
    gap:28px;
}

/* EXPECT BOX */

.expect-box{
    background:#f5fbff;
    border:1px solid #dcecff;
    border-radius:28px;
    padding:34px;
}

.expect-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background: linear-gradient(135deg, #0065ae, #00adf0);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    margin-bottom:30px;
}

.expect-box h3{
        font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 500;
}

.expect-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.expect-box ul li{
        display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
    color: #4c5a70;
    font-size: 14px;
    line-height: 1.7;
}

.expect-box ul li span{
    min-width:8px;
    height:8px;
    background:#4f8cff;
    border-radius:50%;
    margin-top:10px;
    box-shadow:0 0 0 6px rgba(79,140,255,0.12);
}

/* EMAIL BOX */

.email-box{
    background: linear-gradient(135deg, #0065ae, #00adf0);
    border-radius:28px;
    padding:34px;
    color:#fff;
}

.mail-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    background:rgba(255,255,255,0.18);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:30px;
}

.email-box h3{
   font-size: 20px;
    margin-bottom: 16px;
    font-weight: 500;
}

.email-box p{
       font-size: 15px;
    margin-bottom: 18px;
    opacity: .9;
    font-weight: 200;
}

.email-box a{
        color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
}

/* QUESTION BOX */

.question-box{
    background:#fff;
    border-radius:28px;
    padding:34px;
    border:1px solid #e6edf7;
}

.question-box h3{
       font-size: 20px;
    margin-bottom: 18px;
    color: #111827;
    font-weight: 500;
}

.question-sub{
    color:#66758b;
    font-size:17px;
    line-height:1.7;
    margin-bottom:15px;
}

.question-box ul{
    padding-left:20px;
    margin-bottom:28px;
}

.question-box ul li{
   margin-bottom: 5px;
    color: #526177;
    font-size: 14px;
    line-height: 1.7;
}

.bottom-text{
    color:#67768c;
    font-size:17px;
    line-height:1.7;
}

/* RESPONSIVE */

@media(max-width:1150px){

    .contact-grid{
        width:92%;
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .contact-header h1{
        font-size:42px;
    }

    .contact-header .sub{
        font-size:20px;
    }

    .contact-form-box,
    .expect-box,
    .email-box,
    .question-box{
        padding:24px;
        border-radius:22px;
    }

    .expect-box h3,
    .email-box h3,
    .question-box h3{
        font-size:28px;
    }

    .email-box a{
        font-size:20px;
    }

}







/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}


/* =========================
NAVBAR
========================= */

.navbar{
    width:100%;
    height:80px;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 120px;

    border-bottom:1px solid #eef2f7;

    position:relative;
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:100px;
    height:auto;
    display:block;
}

/* MENU */

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-links a{
    font-size:14px;
    color:#606b85;
    transition:0.3s;
}

.nav-links a:hover{
    color:#246bff;
}

.nav-links a.active{
    background:#edf3ff;
    color:#3a73ff;
    padding:10px 18px;
    border-radius:14px;
}

/* =========================
HAMBURGER
========================= */

#menu-toggle{
    display:none;
}

.menu-btn{
    display:none;
    width:32px;
    height:24px;

    flex-direction:column;
    justify-content:space-between;

    cursor:pointer;
}

.menu-btn span{
    width:100%;
    height:3px;
    background:#13235d;
    border-radius:10px;
    transition:0.3s;
}


/* =========================
TABLET
========================= */

@media(max-width:1100px){

    .navbar{
       height: 80px;
        padding: 0 10px;
    }

    .nav-links{
        gap:18px;
    }

}


/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .navbar{
        height:80px;
        padding:0 18px;
    }

    .logo img{
        width:80px;
    }

    /* SHOW HAMBURGER */

    .menu-btn{
        display:flex;
        z-index:1001;
    }

    /* MOBILE MENU */

    .nav-links{
        position:fixed;

        top:0;
        right:-100%;

        width:270px;
        height:100vh;

        background:#fff;

        flex-direction:column;
        align-items:flex-start;

        padding:100px 28px;

        gap:22px;

        transition:0.4s ease;

        box-shadow:-10px 0 40px rgba(0,0,0,0.08);

        z-index:1000;
    }

    .nav-links a{
        font-size:15px;
        width:100%;
    }

    /* OPEN MENU */

    #menu-toggle:checked ~ .nav-links{
        right:0;
    }

    /* ANIMATION */

    #menu-toggle:checked + .menu-btn span:nth-child(1){
        transform:translateY(10px) rotate(45deg);
    }

    #menu-toggle:checked + .menu-btn span:nth-child(2){
        opacity:0;
    }

    #menu-toggle:checked + .menu-btn span:nth-child(3){
        transform:translateY(-10px) rotate(-45deg);
    }

}






.watch-video-button{
        display: flex;
    justify-content: center;
}


/* =========================
INQUIRY BUTTON
========================= */

.kf-inquiry-btn{
    position: fixed;
    right: 25px;
    bottom: 25px;
    /*background: #7c3aed;*/
    background: linear-gradient(135deg, #0065ae, #00adf0);
    color: #fff;
    padding: 15px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(124,58,237,0.35);
    transition: 0.3s ease;
}

.kf-inquiry-btn:hover{
    transform: translateY(-3px);
    background: #6d28d9;
}

/* =========================
POPUP
========================= */

.kf-popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 99999;
    padding: 20px;
}

.kf-popup-overlay.active{
    opacity: 1;
    visibility: visible;
}

.kf-popup-box{
    width: 100%;
    max-width: 450px;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 22px;
    position: relative;
    color: #3e4d67;
    max-height: 95vh;
    overflow-y: auto;
}

.kf-close-popup{
    position: absolute;
    top: 15px;
    right: 18px;
    background: transparent;
    border: none;
    color: #000;
    font-size: 30px;
    cursor: pointer;
}

.kf-popup-box h2{
    font-size: 25px;
    margin-bottom: 5px;
}

.kf-popup-subtitle{
    color: #9ca3af;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size:14px;
}

/* =========================
FORM
========================= */

.kf-form-group{
    margin-bottom: 11px;
}

.kf-form-group label{
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #3e4d67;
}

.kf-form-group input,
.kf-form-group select,
.kf-form-group textarea{
    width: 100%;
       background: #ffffff;
    border: 2px solid rgb(47 46 46 / 18%);
    border-radius: 14px;
    padding: 10px 15px;
    color: #7a7a7a;
    font-size: 12px;
    outline: none;
    transition: 0.3s ease;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.kf-form-group textarea{
    min-height: 100px;
    resize: vertical;
}

.kf-form-group input:focus,
.kf-form-group select:focus,
.kf-form-group textarea:focus{
    border-color: #7c3aed;
}

.kf-audit-btn{
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #0065ae, #00adf0);
    color: #fff;
    padding: 11px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.kf-audit-btn:hover{
    transform: translateY(-2px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

    .kf-popup-box{
        padding: 25px;
    }

    .kf-popup-box h2{
        font-size: 26px;
    }

    .kf-inquiry-btn{
        right: 15px;
        bottom: 15px;
        padding: 13px 20px;
        font-size: 14px;
    }

}



/* =========================
WATCH BUTTON
========================= */

.timeline-watch-btn{
    margin-bottom: 20px;
    border: none;
    /*background: linear-gradient(135deg,#7c3aed,#9333ea);*/
    background: linear-gradient(135deg, #0065ae, #00adf0);
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.timeline-watch-btn:hover{
    transform: translateY(-2px);
}

.timeline-watch-btn i{
    font-size: 13px;
}

/* =========================
VIDEO POPUP
========================= */

.video-popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    padding: 20px;
}

.video-popup-overlay.active{
    opacity: 1;
    visibility: visible;
}

.video-popup-box{
    width: 100%;
    max-width: 900px;
    position: relative;
}

.video-close-btn{
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 38px;
    cursor: pointer;
}

.video-wrapper{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

@media(max-width:768px){

    .video-close-btn{
        top: -45px;
        font-size: 32px;
    }

}



/* Kenilverse Logo Colors */
:root {
    --kenil-blue: #00adf0;
    --kenil-grey: #6A89A7;
}

/* Brand Text */
.kenilverse-brand {
    background: linear-gradient(
        90deg,
        #6A89A7 0%,
        #6A89A7 45%,
        #0065AE 55%,
        #0065AE 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Collapsed State */
.content-wrapper {
    max-height: 165px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

/* Fade Effect */
.content-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(
        transparent,
        #fff
    );
}

/* Expanded */
.content-wrapper.expanded {
    max-height: 5000px;
}

.content-wrapper.expanded::after {
    display: none;
}

/* H2 Only 2 Lines */
.content-wrapper h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.content-wrapper.expanded h2 {
    -webkit-line-clamp: unset;
}

/* Button */
.read-more-btn {
    margin-top: 20px;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(
        135deg,
        var(--kenil-blue),
        var(--kenil-grey)
    );
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.read-more-btn:hover {
    transform: translateY(-2px);
}


.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #f5f5f5;
    color: #009bdf;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #009bdf;
    color: #fff;
}

