
/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap"); */

@font-face {
    font-family: Poppins;
    src: url(../font/Poppins-Regular.woff2);
        font-display: swap;
}


@font-face {
    font-family: PoppinsBold;
    src: url(../font/Poppins-Bold.woff2);
        font-display: swap;

}



@font-face {
    font-family: BodyFont;
    src: url(../font/Inter_24pt-Regular.woff2);
    font-display: swap;
}


html{
    width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    width:100%;
    overflow-x:hidden;
    position:relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: BodyFont, sans-serif;
    /* background: #f8fbff; OLD LIGHT BLUE COLOR */ 
    background: #ffffff;
    color: #1f2937;
    font-color:#0F172A;
}
header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eef2ff;
    z-index: 100;
}
a {
    cursor: pointer;
}
nav {
    max-width: 1200px;
    margin: auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav img {
    height: 42px;
}
nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}
nav a {
    text-decoration: none;
    color: #334155;
}
.btn {
    padding: 12px 22px;
    border-radius: 100px;
    background: linear-gradient(135deg, #2563eb, #06B6D4);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.hero {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
h1{
    font-size:60px;
    line-height:1.18;      /* was 1.05 */
    padding-bottom:0.12em; /* prevents descenders from clipping */
    background:linear-gradient(135deg,#2563eb,#06B6D4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    font-family:PoppinsBold;
}

h2{
    font-size:30px;
    line-height:1.18;      /* was 1.05 */
    padding-bottom:0.12em; /* prevents descenders from clipping */
    background:linear-gradient(135deg,#2563eb,#06B6D4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    font-family:PoppinsBold;
}

h3{
    font-size:20px;
    line-height:1.18;      /* was 1.05 */
    padding-top:0.5em; /* prevents descenders from clipping */
    padding-bottom:0.5em; /* prevents descenders from clipping */
    background:linear-gradient(135deg,#2563eb,#06B6D4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    font-family:PoppinsBold;
}


.tag-line{
    font-size:20px;
    line-height:1.18;      /* was 1.05 */
    padding-top:0.5em; /* prevents descenders from clipping */
    padding-bottom:0.5em; /* prevents descenders from clipping */
    color:#FFFFFF;
    background-clip:text;
    font-family:PoppinsBold;
}

.section{
    padding:40px 0;
}

.section-tight{
    padding-top:20px;
    padding-bottom:20px;
}

.challenge-icon{
    width:44px;
    height:44px;
    color:#2563eb;
    margin:0 auto 20px;
    display:block;
}

.challenge-card{
    text-align:center;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:18px;
    color:#1f2937;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#646464;
    line-height:1.8;
}

.light-bg{
    background:#f8fbff;
}

hero-image{
    width:100%;
    max-width:320px;
    height:auto;
    display:block;
    margin:0 auto;
    border-radius: 28px;
}

p {
    line-height: 1.8;
    color: #646464;
    font-family:BodyFont;
}
.mock {
    /* height: 460px; */
    /* width: 460px; */
    border-radius: 28px;
    background: linear-gradient(135deg, #dbeafe, #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.grid {
    max-width: 1200px;
    margin: auto;
    padding: 20px 24px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.card {
    background: #fff;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid #eef2ff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-8px);
}
footer {
    background: linear-gradient(135deg, #2563eb, #06B6D4);
    color: #fff;
    text-align: center;
    padding: 40px 24px;
    margin-top: 20px;
}
.menu-toggle{
    display:none;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.35);
    backdrop-filter:blur(4px);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:998;
}

.mobile-sticky-cta{
    display:none;
}

@media (max-width:850px){

    body{
        padding-bottom:90px;
    }

    .hero{
        grid-template-columns:1fr;
        gap:32px;
        padding:50px 20px;
        text-align:center;
    }

    h1{
        font-size:45px;
    }

    .menu-toggle{
        display:flex;
        width:44px;
        height:44px;
        border-radius:50%;
        background:#EEF4FF;
        justify-content:center;
        align-items:center;
        flex-direction:column;
        gap:5px;
        cursor:pointer;
        z-index:1001;
    }

    .menu-toggle span{
        width:22px;
        height:3px;
        background:#2563EB;
        border-radius:99px;
        transition:.3s;
    }

    .menu-toggle.active span:nth-child(1){
        transform:translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2){
        opacity:0;
    }

    .menu-toggle.active span:nth-child(3){
        transform:translateY(-8px) rotate(-45deg);
    }

    nav ul{
        position:fixed;
        top:0;
        right:0;
        width:min(320px,85vw);
        height:100vh;
        background:#fff;
        display:flex;
        flex-direction:column;
        gap:0;
        padding:80px 0 24px;
        transform:translateX(100%);
        transition:transform .35s ease;
        box-shadow:-20px 0 60px rgba(15,23,42,.18);
        border-radius:24px 0 0 24px;
        z-index:999;
    }

    nav ul.active{
        transform:translateX(0);
    }

    nav ul li{
        list-style:none;
    }

    nav ul li a{
        display:block;
        margin:4px 12px;
        padding:18px 24px;
        border-radius:12px;
         position:relative;

    transition:.3s;
    }

nav ul li a.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    height:3px;

    border-radius:99px;

    background:linear-gradient(135deg,#2563EB,#06B6D4);

}

@media(max-width:850px){

    nav ul li a.active{

        background:#EEF4FF;

    }

    nav ul li a.active::after{

        display:none;

    }

}
    .mobile-cta{
        
        padding:20px;
    }

    .mobile-cta .btn{
        display:block;
        text-align:center;
    }

    .mobile-sticky-cta{
        display:block;
        position:fixed;
        left:16px;
        right:16px;
        bottom:16px;
        z-index:997;
    }

    .mobile-sticky-cta a{
        display:flex;
        justify-content:center;
        align-items:center;
        height:56px;
        border-radius:999px;
        background:linear-gradient(135deg,#2563eb,#06B6D4);
        color:#fff;
        text-decoration:none;
        font-weight:800;
        box-shadow:0 15px 35px rgba(37,99,235,.25);
    }

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

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

    .final-cta{
        padding:20px 24px;
    }

}


/* ===== Pricing Page ===== */
.pricing-hero{
    display:block !important;
    max-width:1200px;
}

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

.price-card{
    background:#fff;
    border-radius:24px;
    padding:36px;
    box-shadow:0 20px 50px rgba(15,23,42,.08);
    border:1px solid #eef2ff;
    position:relative;
}

.price-card.pop{
    border:2px solid #6366f1;
}

.badge{
    position:absolute;
    top:-14px;
    right:24px;
    background:linear-gradient(135deg,#2563eb,#06B6D4);
    color:#fff;
    padding:8px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.amount{
    font-size:52px;
    font-weight:700;
    margin:20px 0;
}

.amount span{
    font-size:18px;
    color:#646464;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:24px 0;
}

.price-card li{
    padding:10px 0;
    border-bottom:1px solid #eef2ff;
}

.price-card li::before{
    content:"✓ ";
    color:#16a34a;
    font-weight:700;
}

.cta{
    display:block;
    text-align:center;
    padding:14px;
    border-radius:14px;
    background:linear-gradient(135deg,#2563eb,#06B6D4);
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:850px){
    .pricing-grid{
        grid-template-columns:1fr;
    }
}



  .zx-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex; align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .zx-overlay.open { opacity: 1; pointer-events: all; }
  .zx-popup {
    background: #fff;
    width: 100%; max-width: 480px;
    border-radius: 24px 24px 0 0;
    padding: 0 0 32px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.34,1.1,0.64,1);
    position: relative;
  }
  .zx-overlay.open .zx-popup { transform: translateY(0); }
  .zx-handle {
    width: 40px; height: 4px;
    background: #e0e0e0; border-radius: 99px;
    margin: 12px auto 20px;
  }
  .zx-logo-row {
    display: flex; align-items: center; gap: 10px;
    padding: 0 24px 16px;
    border-bottom: 0.5px solid #f0f0f0;
  }
  .zx-logo-mark {
    width: 40px; height: 40px; border-radius: 10px;
    background: #2667A8;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 20px; color: #fff; font-family: sans-serif;
  }
  .zx-logo-text { font-weight: 600; font-size: 17px; color: #1a1a1a; font-family: sans-serif; }
  .zx-logo-sub { font-size: 12px; color: #888; font-family: sans-serif; margin-top: 1px; }
  .zx-close {
    position: absolute; top: 14px; right: 18px;
    width: 30px; height: 30px; border-radius: 50%;
    background: #f4f4f4; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: #666;
  }
  .zx-section { padding: 20px 24px 0; }
  .zx-tagline { font-size: 14px; color: #555; font-family: sans-serif; margin-bottom: 18px; line-height: 1.5; }
  .zx-store-btn {
    display: flex; align-items: center; gap: 14px;
    background: #111; color: #fff;
    border-radius: 14px; padding: 13px 20px;
    margin-bottom: 12px; text-decoration: none;
    cursor: pointer; border: none; width: 100%; box-sizing: border-box;
    transition: background 0.2s;
  }
  .zx-store-btn:hover { background: #2667A8; }
  .zx-store-btn.outline {
    background: #fff; color: #111;
    border: 1.5px solid #e0e0e0;
  }
  .zx-store-btn.outline:hover { background: #f0f5ff; border-color: #2667A8; color: #2667A8; }
  .zx-store-icon { flex-shrink: 0; }
  .zx-store-label { text-align: left; }
  .zx-store-small { font-size: 10px; opacity: 0.7; font-family: sans-serif; display: block; }
  .zx-store-name { font-size: 15px; font-weight: 600; font-family: sans-serif; display: block; }
  .zx-divider { text-align: center; font-size: 12px; color: #bbb; margin: 4px 0 12px; font-family: sans-serif; }

  /* Desktop QR view */
  .zx-desktop { display: none; }
  .zx-qr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 4px; }
  .zx-qr-card {
    border: 1.5px solid #e8eef5; border-radius: 16px;
    padding: 16px; text-align: center; background: #f8fafd;
  }
  .zx-qr-img {
    width: 100px; height: 100px; background: #e0e9f5;
    border-radius: 10px; margin: 0 auto 10px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .zx-qr-placeholder {
    display: grid; grid-template-columns: repeat(7,1fr); gap: 2px;
    padding: 8px; width: 100%; height: 100%; box-sizing: border-box;
  }
  .qp { background: #2667A8; border-radius: 1px; }
  .qe { background: transparent; }
  .zx-qr-store-name { font-size: 13px; font-weight: 600; color: #1a1a1a; font-family: sans-serif; }
  .zx-qr-hint { font-size: 11px; color: #999; font-family: sans-serif; margin-top: 3px; }
  .zx-qr-store-btn {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px; padding: 7px 14px;
    border-radius: 8px; background: #2667A8; color: #fff;
    font-size: 12px; font-weight: 500; font-family: sans-serif;
    text-decoration: none; cursor: pointer; border: none;
    transition: background 0.2s;
  }
  .zx-qr-store-btn:hover { background: #1a4f8a; }
  .zx-note { font-size: 11px; color: #bbb; text-align: center; margin-top: 16px; font-family: sans-serif; }

  /* Trigger button */
  .zx-trigger-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 24px; }
  .zx-trigger {
    padding: 13px 36px; border-radius: 12px;
    background: #2667A8; color: #fff; border: none;
    font-size: 15px; font-weight: 600; cursor: pointer;
    font-family: sans-serif; transition: background 0.2s;
  }
  .zx-trigger:hover { background: #1a4f8a; }
  .zx-hint { font-size: 12px; color: #999; font-family: sans-serif; }

  @media(min-width: 640px) {
    .zx-overlay { align-items: center; }
    .zx-popup { border-radius: 24px; max-width: 520px; }
    .zx-mobile-only { display: none; }
    .zx-desktop { display: block; }
  }
  @media(max-width: 639px) {
    .zx-desktop { display: none; }
  }
  
  .faq{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    border:1px solid #e5e7eb;
    border-radius:16px;
    margin-bottom:16px;
    background:#fff;
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.faq-question{

    width:100%;
    background:none;
    border:none;
    padding:24px 28px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    cursor:pointer;

    font-size:18px;
    font-weight:600;

    text-align:left;
}

.faq-answer{

    max-height:0;
    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 28px 24px;

    color:#646464;
    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:220px;

}

.faq-item.active .faq-icon{

    transform:rotate(180deg);

}

.faq-icon{

    transition:.3s;

}

.final-cta{

    max-width:900px;

    margin:auto;

    padding:30px;

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:24px;

    text-align:center;

    box-shadow:0 15px 40px rgba(15,23,42,.06);

}

.final-cta h2{

    margin-bottom:18px;

}

.final-cta p{

    max-width:650px;

    margin:0 auto 30px;

    color:#646464;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:24px;

    margin-bottom:24px;

}

.text-link{

    color:#2563EB;

    font-weight:600;

    text-decoration:none;

}

.cta-note{

    color:##646464;

    font-size:14px;

}

.highlighttext
{
    color:#2563eb;
}

nav a{
    position:relative;
    text-decoration:none;
    color:#334155;
    font-weight:500;
    padding:8px 0;
    transition:all .25s ease;
}

nav a:hover{
    color:#334155;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    border-radius:999px;
    background:linear-gradient(135deg,#2563EB,#06B6D4);
    transition:width .25s ease;
}

nav a:hover::after{
    width:100%;
}

nav a.active{
    color:#2563EB;
    font-weight:600;
}

nav a.active::after{
    width:100%;
}


/* ABOUT US */
/* ===============================
   About Page Content
================================== */

.about-content{

    max-width:900px;

    margin:0 auto;

}

.about-block{
    max-width:900px;
    margin-bottom:60px;

}

.about-block:last-child{

    margin-bottom:0;

}

.about-block h2{

    margin-bottom:12px;

}

.about-block h3{

    margin-bottom:8px;

}

.about-block p{

    font-size:17px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:18px;

}

.about-block p:last-child{

    margin-bottom:0;

}

/* Mobile */

@media(max-width:850px){

    .about-content{

        padding:0 20px;

    }

    .about-block{

        margin-bottom:45px;

    }

    .about-block p{

        font-size:16px;

        line-height:1.8;

    }

}

/* ===============================
   Inner Page Hero
================================== */

.page-hero{

    padding:60px 0 20px;

}

.page-hero h1{
    margin-bottom:24px;
}

.page-hero p{
    max-width:900px;
    font-size:18px;
    line-height:1.9;
}