*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f7f8fa;
    overflow-x:hidden;
}

header{
    width:100%;
    height:78px;
    background:#fff;
    border-bottom:1px solid #e8ebef;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 65px;
    position:sticky;
    top:0;
    z-index:100;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:700;
    color:#27b34a;
}

.logo-circle{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#27b34a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
}

nav{
    display:flex;
    align-items:center;
    gap:38px;
}

nav a{
    text-decoration:none;
    color:#111827;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#27b34a;
}

.header-right{
    display:flex;
    align-items:center;
    gap:16px;
}

.lang{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:16px;
    color:#111827;
    font-weight:500;
}

.btn-outline{
    padding:12px 22px;
    border-radius:12px;
    border:1px solid #d5dbe3;
    background:#fff;
    color:#111827;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-outline:hover{
    background:#f3f4f6;
}

.btn-dark{
    padding:13px 24px;
    border:none;
    border-radius:12px;
    background:#17233f;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.btn-dark:hover{
    background:#0d1633;
}


.hero{
    min-height:calc(100vh - 78px);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:70px 80px;
    position:relative;
    overflow:hidden;
}


.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(#eceef1 1px, transparent 1px),
    linear-gradient(90deg,#eceef1 1px, transparent 1px);
    background-size:70px 70px;
    z-index:-2;
}

.hero::after{
    content:"";
    position:absolute;
    left:-180px;
    top:-80px;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#def4e4 0%, transparent 70%);
    z-index:-1;
}

.hero-left{
    width:48%;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:12px 20px;
    border-radius:50px;
    border:1px solid #e5e7eb;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    margin-bottom:36px;
}

.badge-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#f3be4d;
}

.badge span{
    color:#1f7f34;
    font-size:16px;
    font-weight:700;
}


.hero-title{
    font-size:64px;
    line-height:1.08;
    font-weight:800;
    color:#07112d;
    margin-bottom:24px;
}

.green{
    color:#22b24c;
}

.blue{
    color:#3477e6;
}

.hero-sub{
    font-size:20px;
    line-height:1.7;
    color:#58657d;
    width:88%;
    margin-bottom:42px;
}

.hero-buttons{
    display:flex;
    gap:22px;
}

.hero-btn{
    padding:20px 38px;
    border-radius:18px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
}

.green-btn{
    background:#25b646;
    color:#fff;
    border:none;
    box-shadow:0 12px 25px rgba(37,182,70,.28);
}

.green-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 30px rgba(37,182,70,.38);
}

.white-btn{
    background:#fff;
    color:#334155;
    border:2px solid #dbe0e8;
}

.white-btn:hover{
    background:#f8fafc;
    transform:translateY(-4px);
}


.hero-right{
    width:48%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}


.circle-wrapper{
    position:relative;
    width:560px;
    height:560px;
    transition:1s ease;
}

.circle-wrapper:hover{
    transform:rotate(8deg) scale(1.03);
}

.outer-circle{
    width:100%;
    height:100%;
    border-radius:50%;
    background:#d7f0d9;
    display:flex;
    align-items:center;
    justify-content:center;
}

.middle-circle{
    width:420px;
    height:420px;
    border-radius:50%;
    background:#8fd49a;
    display:flex;
    align-items:center;
    justify-content:center;
}

.inner-circle{
    width:260px;
    height:260px;
    border-radius:50%;
    background:#28b446;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:145px;
    font-weight:900;
    letter-spacing:-8px;
}


.icon-box{
    position:absolute;
    width:72px;
    height:72px;
    border-radius:50%;
    background:#27b446;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 12px 25px rgba(0,0,0,0.14);
    transition:.4s;
    cursor:pointer;
}

.icon-box:hover{
    transform:translateY(-6px) scale(1.1);
}

.icon-small{
    width:56px;
    height:56px;
    background:#fff;
    color:#28b446;
    font-size:22px;
}


.icon1{
    top:30px;
    right:75px;
}

.icon2{
    top:70px;
    left:75px;
}

.icon3{
    bottom:110px;
    right:0;
}

.icon4{
    bottom:45px;
    left:105px;
}

.icon5{
    left:15px;
    top:240px;
}

.icon6{
    right:55px;
    top:255px;
}

.icon7{
    left:105px;
    bottom:180px;
}

.icon8{
    top:175px;
    left:155px;
}

.icon9{
    bottom:120px;
    right:105px;
}


.whatsapp{
    position:fixed;
    right:28px;
    bottom:25px;
    background:#20c34b;
    color:#fff;
    padding:16px 24px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:17px;
    font-weight:600;
    box-shadow:0 12px 30px rgba(0,0,0,0.18);
    cursor:pointer;
    z-index:100;
    transition:.3s;
}

.whatsapp:hover{
    transform:translateY(-4px);
}

.whatsapp i{
    font-size:28px;
}


@media(max-width:1200px){

.hero{
    flex-direction:column;
    text-align:center;
    gap:80px;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-sub{
    width:100%;
}

.hero-buttons{
    justify-content:center;
}

.hero-title{
    font-size:52px;
}

.circle-wrapper{
    width:470px;
    height:470px;
}

.middle-circle{
    width:350px;
    height:350px;
}

.inner-circle{
    width:220px;
    height:220px;
    font-size:120px;
}

}

@media(max-width:768px){

header{
    padding:15px 20px;
}

nav{
    display:none;
}

.hero{
    padding:40px 20px;
}

.hero-title{
    font-size:40px;
}

.hero-sub{
    font-size:17px;
}

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

.hero-btn{
    width:100%;
}

.circle-wrapper{
    width:340px;
    height:340px;
}

.middle-circle{
    width:250px;
    height:250px;
}

.inner-circle{
    width:160px;
    height:160px;
    font-size:90px;
}

.icon-box{
    width:56px;
    height:56px;
    font-size:22px;
}

.icon-small{
    width:46px;
    height:46px;
    font-size:18px;
}

.whatsapp{
    right:15px;
    bottom:15px;
    padding:14px 18px;
    font-size:15px;
}

}

.productivity-section{
    padding:80px 70px;
    background:#fff;
}

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

.section-title h2{
    font-size:44px;
    font-weight:800;
    color:#07112d;
    margin-bottom:14px;
    line-height:1.2;
}

.section-title p{
    font-size:16px;
    color:#55657d;
    font-weight:500;
}


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


.product-card{
    background:#f5f7fa;
    border-radius:26px;
    padding:32px;
    transition:.4s;
    border:1px solid #edf0f3;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.06);
}


.card-icon{
    width:68px;
    height:68px;
    border-radius:20px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin-bottom:26px;
    box-shadow:0 5px 14px rgba(0,0,0,0.05);
}

.card-icon.green{
    color:#22b24c;
}

.card-icon.blue{
    color:#3477e6;
}

.card-icon.orange{
    color:#f59e0b;
}


.product-card h3{
    font-size:22px;
    font-weight:800;
    color:#07112d;
    margin-bottom:16px;
    line-height:1.3;
}

.product-card p{
    font-size:15px;
    line-height:1.8;
    color:#5a6980;
    margin-bottom:30px;
}


.card-image{
    height:170px;
    border-radius:20px;
    background:#fff;
    position:relative;
    overflow:hidden;
    border:1px solid #edf0f4;
}


.sender-bg,
.schedule-bg,
.chat-bg{
    background-image:radial-gradient(#d6deea 1.1px, transparent 1.1px);
    background-size:22px 22px;
    background-color:#fff;
}


.sender-circle{
    width:180px;
    height:180px;
    border-radius:50%;
    border:1px solid #d8f0dd;
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
}

.sender-icons{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    display:flex;
    align-items:center;
    gap:16px;
}

.small-round{
    width:38px;
    height:38px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:13px;
}

.left-icon{
    background:#dce9ff;
    color:#3477e6;
}

.right-icon{
    background:#f1e3ff;
    color:#8b5cf6;
}

.center-round{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#22b24c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    box-shadow:0 10px 20px rgba(34,178,76,.22);
}


.calendar-box{
    width:105px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    position:absolute;
    top:28px;
    left:110px;
    transform:rotate(-6deg);
    box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.calendar-top{
    background:#ff2f3c;
    color:#fff;
    text-align:center;
    padding:8px;
    font-weight:700;
    font-size:14px;
}

.calendar-date{
    text-align:center;
    padding:24px 0;
    font-size:40px;
    font-weight:800;
    color:#07112d;
}

.time-box{
    position:absolute;
    right:28px;
    bottom:34px;
    background:#3477e6;
    color:#fff;
    padding:12px 18px;
    border-radius:12px;
    font-size:13px;
    box-shadow:0 8px 18px rgba(52,119,230,.22);
}


.chat-top{
    display:flex;
    align-items:center;
    gap:12px;
    position:absolute;
    top:36px;
    left:22px;
}

.chat-user{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#d7dde7;
}

.chat-msg1{
    background:#eef2f7;
    padding:12px 16px;
    border-radius:12px;
    font-size:13px;
    color:#64748b;
}

.chat-bottom{
    display:flex;
    align-items:center;
    gap:8px;
    position:absolute;
    right:18px;
    bottom:34px;
}

.chat-msg2{
    background:#fff7e7;
    border:1px solid #f7d48b;
    padding:12px 16px;
    border-radius:12px;
    font-size:13px;
    font-weight:600;
    color:#07112d;
}

.ai-badge{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#f59e0b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}


@media(max-width:1200px){

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

.section-title h2{
    font-size:38px;
}

}

@media(max-width:768px){

.productivity-section{
    padding:60px 20px;
}

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

.section-title h2{
    font-size:30px;
}

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

.product-card{
    padding:24px;
}

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

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

.card-image{
    height:160px;
}

.calendar-box{
    left:75px;
}

.time-box{
    right:14px;
    bottom:24px;
    font-size:12px;
}

}

.continuation-section{
    padding:0 70px 90px;
    background:#fff;
}


.continuation-grid{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:38px;
    align-items:stretch;
}


.translate-card,
.account-card{
    background:#f5f7fa;
    border:1px solid #e8edf3;
    border-radius:30px;
    padding:40px;
    transition:.4s;
}

.translate-card:hover,
.account-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.06);
}


.mini-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:30px;
    box-shadow:0 5px 14px rgba(0,0,0,0.05);
}

.mini-icon.dark{
    color:#34425d;
}

.mini-icon.pink{
    color:#ff3ca6;
}


.translate-card h3,
.account-left h3{
    font-size:22px;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
    line-height:1.3;
}

.translate-card p,
.account-left p{
    font-size:15px;
    line-height:1.8;
    color:#5f6c82;
}


.translate-box{
    margin-top:30px;
    height:180px;
    border-radius:22px;
    background-image:radial-gradient(#d6deea 1.1px, transparent 1.1px);
    background-size:22px 22px;
    background-color:#fff;
    border:1px solid #edf0f4;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
}

.translate-msg{
    padding:14px 20px;
    border-radius:14px;
    font-size:16px;
    font-weight:700;
}

.dark-msg{
    background:#1f2b46;
    color:#fff;
}

.green-msg{
    background:#22b24c;
    color:#fff;
    box-shadow:0 10px 20px rgba(34,178,76,.22);
}

.arrow-icon{
    color:#22b24c;
    font-size:22px;
}


.account-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.account-left{
    width:42%;
}

.account-right{
    width:58%;
}

.account-box{
    height:195px;
    border-radius:22px;
    background-image:radial-gradient(#d6deea 1.1px, transparent 1.1px);
    background-size:22px 22px;
    background-color:#fff;
    border:1px solid #edf0f4;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:22px;
}

.account-row{
    background:#fff;
    border-radius:18px;
    padding:16px 18px;
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:16px;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.account-row:last-child{
    margin-bottom:0;
}

.active-row{
    background:#eef8ef;
}

.account-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:16px;
    font-weight:700;
}

.green-avatar{
    background:#22b24c;
}

.blue-avatar{
    background:#6da0f2;
}

.account-row h4{
    font-size:16px;
    color:#1f2937;
    margin-bottom:4px;
}

.online{
    font-size:13px;
    color:#2f9e44;
    font-weight:600;
}

.offline{
    font-size:13px;
    color:#b0b7c3;
    font-weight:600;
}


@media(max-width:1200px){

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

.account-card{
    flex-direction:column;
}

.account-left,
.account-right{
    width:100%;
}

}

@media(max-width:768px){

.continuation-section{
    padding:0 20px 70px;
}

.translate-card,
.account-card{
    padding:28px;
}

.translate-card h3,
.account-left h3{
    font-size:20px;
}

.translate-card p,
.account-left p{
    font-size:14px;
}

.translate-box{
    height:160px;
}

.account-box{
    height:auto;
}

.account-row{
    padding:14px;
}

}

.sales-section{
    padding:90px 70px;
    background:
    linear-gradient(90deg,#07112d 0%, #08143a 45%, #06273a 100%);
    overflow:hidden;
}


.sales-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}


.sales-left{
    width:46%;
}

.sales-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:40px;
    background:rgba(34,178,76,0.12);
    border:1px solid rgba(34,178,76,0.4);
    color:#4df47d;
    font-size:14px;
    font-weight:700;
    margin-bottom:34px;
}

.sales-left h2{
    font-size:58px;
    line-height:1.15;
    font-weight:800;
    color:#fff;
    margin-bottom:28px;
}

.sales-desc{
    font-size:20px;
    line-height:1.8;
    color:#9fb0c8;
    margin-bottom:48px;
}


.sales-item{
    display:flex;
    gap:24px;
    margin-bottom:40px;
}

.sales-number{
    min-width:62px;
    height:62px;
    border-radius:20px;
    background:#132542;
    border:1px solid #294263;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#5cf48a;
    font-size:34px;
    font-weight:800;
}

.sales-content h3{
    font-size:26px;
    color:#fff;
    margin-bottom:12px;
    font-weight:800;
}

.sales-content p{
    font-size:17px;
    line-height:1.8;
    color:#9fb0c8;
}


.sales-right{
    width:54%;
    display:flex;
    justify-content:center;
}


.pipeline-board{
    width:100%;
    max-width:720px;
    height:440px;
    border-radius:28px;
    border:1px solid rgba(61,227,118,0.35);
    background:#162744;
    padding:30px;
    display:flex;
    gap:20px;
    box-shadow:0 25px 60px rgba(0,0,0,0.35);
}


.pipeline-column{
    flex:1;
    background:#223453;
    border-radius:22px;
    padding:16px;
    position:relative;
}

.column-line{
    width:80px;
    height:10px;
    border-radius:10px;
    background:#516787;
    margin-bottom:24px;
}

.green-line{
    background:#35c84d;
}


.pipeline-card{
    background:#50637f;
    border-radius:18px;
    padding:16px;
    margin-bottom:16px;
}

.small-card{
    width:92%;
}

.avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    margin-bottom:18px;
}

.avatar.blue{
    background:#4266a9;
}

.avatar.purple{
    background:#66559f;
}

.avatar.brown{
    background:#886a5f;
}

.card-line{
    width:100%;
    height:10px;
    border-radius:10px;
    background:#7084a4;
}


.empty-box{
    width:100%;
    height:34px;
    border-radius:14px;
    background:#30425f;
    margin-top:6px;
}


.won-box{
    position:absolute;
    right:16px;
    bottom:16px;
    background:#2fb447;
    color:#fff;
    padding:16px 24px;
    border-radius:16px;
    font-size:18px;
    font-weight:800;
    box-shadow:0 12px 24px rgba(47,180,71,.28);
}


@media(max-width:1200px){

.sales-container{
    flex-direction:column;
}

.sales-left,
.sales-right{
    width:100%;
}

.sales-left{
    text-align:center;
}

.sales-item{
    text-align:left;
}

.sales-left h2{
    font-size:48px;
}

}

@media(max-width:768px){

.sales-section{
    padding:70px 20px;
}

.sales-left h2{
    font-size:34px;
}

.sales-desc{
    font-size:16px;
}

.sales-item{
    gap:16px;
}

.sales-number{
    min-width:52px;
    height:52px;
    font-size:26px;
}

.sales-content h3{
    font-size:22px;
}

.sales-content p{
    font-size:15px;
}

.pipeline-board{
    height:auto;
    padding:18px;
    gap:14px;
}

.pipeline-column{
    padding:12px;
}

.won-box{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
    text-align:center;
    font-size:15px;
}

}

.team-features-section{
    padding:90px 70px;
    background:#ffffff;
}


.team-heading{
    text-align:center;
    margin-bottom:70px;
}

.team-heading h2{
    font-size:58px;
    font-weight:800;
    color:#07112d;
    margin-bottom:18px;
    line-height:1.2;
}

.team-heading p{
    font-size:20px;
    color:#58657d;
    line-height:1.7;
}


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


.team-card{
    background:#fff;
    border:1px solid #e8edf3;
    border-radius:26px;
    padding:32px;
    transition:.4s;
    box-shadow:0 4px 10px rgba(0,0,0,0.03);
}

.team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 35px rgba(0,0,0,0.07);
}

.active-card{
    border:1px solid #ccefe0;
}


.team-icon{
    width:58px;
    height:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:28px;
}

.blue-bg{
    background:#edf3ff;
    color:#346df1;
}

.green-bg{
    background:#edf8ef;
    color:#1f9d45;
}

.purple-bg{
    background:#f3ebff;
    color:#9333ea;
}

.orange-bg{
    background:#fff2e8;
    color:#f97316;
}


.team-card h3{
    font-size:22px;
    line-height:1.45;
    color:#07112d;
    font-weight:800;
    margin-bottom:18px;
}

.team-card p{
    font-size:16px;
    line-height:1.9;
    color:#5e6b81;
}


@media(max-width:1200px){

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

.team-heading h2{
    font-size:46px;
}

}

@media(max-width:768px){

.team-features-section{
    padding:70px 20px;
}

.team-heading{
    margin-bottom:50px;
}

.team-heading h2{
    font-size:34px;
}

.team-heading p{
    font-size:16px;
}

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

.team-card{
    padding:28px;
}

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

.team-card p{
    font-size:15px;
}

}

.ai-chat-section{
    padding:100px 70px;
    background:
    linear-gradient(90deg,#07112d 0%, #091735 45%, #132847 100%);
    overflow:hidden;
}


.ai-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}


.ai-left{
    width:48%;
}

.ai-left h2{
    font-size:60px;
    line-height:1.15;
    color:#fff;
    font-weight:800;
    margin-bottom:28px;
}

.ai-desc{
    font-size:21px;
    line-height:1.8;
    color:#b4c1d5;
    margin-bottom:48px;
}


.ai-feature-card{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:26px;
    margin-bottom:28px;
    transition:.4s;
}

.ai-feature-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,0.07);
    box-shadow:0 18px 35px rgba(0,0,0,0.18);
}


.ai-icon{
    min-width:58px;
    height:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#fff;
}

.green-icon{
    background:#2bb44a;
}

.blue-icon{
    background:#3d7cf3;
}


.ai-content h3{
    font-size:24px;
    color:#fff;
    margin-bottom:12px;
    font-weight:800;
}

.ai-content p{
    font-size:17px;
    line-height:1.8;
    color:#a9b8ce;
}


.ai-right{
    width:52%;
    display:flex;
    justify-content:center;
}


.chat-preview{
    width:100%;
    max-width:760px;
    height:500px;
    border-radius:30px;
    border:1px solid rgba(255,255,255,0.08);
    background:
    radial-gradient(circle at center,
    rgba(40,180,70,0.15) 0%,
    rgba(13,29,57,0.2) 35%,
    #1a2946 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px;
}


.chat-window{
    width:100%;
    max-width:560px;
    background:#0d1a35;
    border:1px solid rgba(139,163,201,0.25);
    border-radius:24px;
    padding:22px;
}


.chat-row{
    display:flex;
    align-items:center;
    gap:16px;
}

.top-chat{
    margin-bottom:26px;
}

.bottom-chat{
    justify-content:flex-end;
}


.chat-avatar{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#314667;
}


.chat-bubble{
    padding:16px 20px;
    border-radius:16px;
    font-size:18px;
    line-height:1.5;
}

.dark-bubble{
    background:#182846;
    border:1px solid #30466c;
    color:#fff;
}

.green-bubble{
    background:#28b446;
    color:#fff;
    box-shadow:0 12px 22px rgba(40,180,70,.25);
}


.translate-status{
    display:flex;
    align-items:center;
    gap:12px;
    color:#3be36a;
    font-size:20px;
    margin-left:58px;
    margin-bottom:22px;
}

.translate-status i{
    font-size:18px;
}


.ai-mini{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#2fb447;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:700;
}


@media(max-width:1200px){

.ai-container{
    flex-direction:column;
}

.ai-left,
.ai-right{
    width:100%;
}

.ai-left h2{
    font-size:48px;
}

}

@media(max-width:768px){

.ai-chat-section{
    padding:70px 20px;
}

.ai-left h2{
    font-size:36px;
}

.ai-desc{
    font-size:17px;
}

.ai-feature-card{
    padding:22px;
}

.ai-content h3{
    font-size:20px;
}

.ai-content p{
    font-size:15px;
}

.chat-preview{
    height:auto;
    padding:20px;
}

.chat-window{
    padding:18px;
}

.chat-bubble{
    font-size:14px;
    padding:14px 16px;
}

.translate-status{
    font-size:15px;
    margin-left:0;
}

.ai-mini{
    width:40px;
    height:40px;
    font-size:13px;
}

}

.testimonial-section{
    padding:85px 0;
    background:#f8fafc;
    overflow:hidden;
}


.testimonial-heading{
    text-align:center;
    margin-bottom:55px;
    padding:0 20px;
}

.testimonial-heading h2{
    font-size:48px;
    font-weight:800;
    color:#07112d;
    line-height:1.2;
    margin-bottom:16px;
}

.testimonial-heading p{
    max-width:760px;
    margin:auto;
    font-size:18px;
    line-height:1.7;
    color:#58657d;
}


.testimonial-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}


.testimonial-track{
    display:flex;
    gap:24px;
    width:max-content;
    animation:scrollLeft 26s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}


.testimonial-card{
    width:430px;
    background:#fff;
    border-radius:24px;
    padding:28px;
    border:1px solid #e7edf3;
    box-shadow:0 5px 12px rgba(0,0,0,0.04);
    flex-shrink:0;
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 32px rgba(0,0,0,0.08);
}


.stars{
    color:#f6b800;
    font-size:18px;
    margin-bottom:20px;
    letter-spacing:1px;
}


.review-text{
    font-size:15px;
    line-height:1.9;
    color:#475569;
    margin-bottom:30px;
}

.review-text b{
    color:#23324f;
}


.user-box{
    display:flex;
    align-items:center;
    gap:14px;
}

.user-avatar{
    width:54px;
    height:54px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:800;
}

.purple-avatar{
    background:#f1e5ff;
    color:#9b4dff;
}

.orange-avatar{
    background:#ffe8cf;
    color:#f97316;
}

.blue-avatar{
    background:#dbeafe;
    color:#2563eb;
}

.green-avatar{
    background:#dcfce7;
    color:#16a34a;
}

.user-box h4{
    font-size:20px;
    color:#111827;
    margin-bottom:4px;
    font-weight:800;
}

.user-box span{
    font-size:14px;
    color:#74839b;
}


@keyframes scrollLeft{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}


@media(max-width:1200px){

.testimonial-heading h2{
    font-size:40px;
}

.testimonial-heading p{
    font-size:16px;
}

.testimonial-card{
    width:360px;
}

}

@media(max-width:768px){

.testimonial-section{
    padding:65px 0;
}

.testimonial-heading{
    margin-bottom:40px;
}

.testimonial-heading h2{
    font-size:30px;
}

.testimonial-heading p{
    font-size:15px;
    line-height:1.7;
}

.testimonial-track{
    gap:18px;
}

.testimonial-card{
    width:300px;
    padding:22px;
}

.stars{
    font-size:16px;
}

.review-text{
    font-size:14px;
    line-height:1.8;
}

.user-avatar{
    width:46px;
    height:46px;
    font-size:16px;
}

.user-box h4{
    font-size:18px;
}

.user-box span{
    font-size:13px;
}

}

.testimonial-row-two{
    padding:10px 0 90px;
    background:#f8fafc;
    overflow:hidden;
}


.reverse-track{
    animation:scrollRight 26s linear infinite;
}

.reverse-slider:hover .reverse-track{
    animation-play-state:paused;
}


.red-avatar{
    background:#ffe2e2;
    color:#ef4444;
}

.pink-avatar{
    background:#fce7f3;
    color:#ec4899;
}

.violet-avatar{
    background:#e0e7ff;
    color:#4f46e5;
}

.teal-avatar{
    background:#ccfbf1;
    color:#0f766e;
}


@keyframes scrollRight{

    0%{
        transform:translateX(-50%);
    }

    100%{
        transform:translateX(0%);
    }

}


@media(max-width:768px){

.testimonial-row-two{
    padding:0 0 70px;
}

}

.security-section{
    width:100%;
    padding:90px 7% 95px;
    background:#f5f7fb;
}

.security-heading{
    text-align:center;
    margin-bottom:95px;
}

.security-heading h2{
    font-size:54px;
    line-height:1.2;
    font-weight:800;
    color:#061738;
    margin-bottom:22px;
}

.security-heading p{
    font-size:22px;
    color:#5b6985;
    line-height:1.7;
}

.security-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:70px;
    align-items:flex-start;
}

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

.security-icon{
    width:84px;
    height:84px;
    border-radius:50%;
    background:#fff;
    margin:0 auto 34px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#1f8f3f;
    border:1px solid #ebedf2;
    box-shadow:0 4px 10px rgba(0,0,0,0.04);
}

.security-card h3{
    font-size:28px;
    font-weight:800;
    color:#061738;
    margin-bottom:22px;
}

.security-card p{
    font-size:18px;
    line-height:1.8;
    color:#4f5f7a;
    max-width:430px;
    margin:auto;
}


@media(max-width:1100px){

.security-grid{
    grid-template-columns:1fr;
    gap:60px;
}

.security-heading{
    margin-bottom:70px;
}

}

@media(max-width:768px){

.security-section{
    padding:70px 20px;
}

.security-heading h2{
    font-size:38px;
}

.security-heading p{
    font-size:17px;
}

.security-card h3{
    font-size:24px;
}

.security-card p{
    font-size:16px;
}

.security-icon{
    width:72px;
    height:72px;
    font-size:30px;
}

}

.faq-section{
    width:100%;
    padding:90px 7% 100px;
    background:#f5f7fb;
}

.faq-heading{
    text-align:center;
    margin-bottom:70px;
}

.faq-heading h2{
    font-size:56px;
    font-weight:800;
    color:#071739;
    margin-bottom:18px;
    line-height:1.2;
}

.faq-heading p{
    font-size:22px;
    color:#5d6b84;
    line-height:1.7;
}

.faq-container{
    max-width:1180px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.faq-item{
    background:#fff;
    border:1px solid #dde3ee;
    border-radius:24px;
    overflow:hidden;
    transition:.35s;
}

.faq-item:hover{
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:34px 38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    cursor:pointer;
    text-align:left;
}

.faq-question span{
    font-size:22px;
    line-height:1.5;
    font-weight:800;
    color:#071739;
}

.faq-question i{
    font-size:22px;
    color:#667792;
    transition:.3s;
    flex-shrink:0;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer p{
    padding:0 38px 34px;
    font-size:19px;
    line-height:1.9;
    color:#4f5f79;
}

.faq-item.active .faq-answer{
    max-height:500px;
}

.faq-item.active{
    border-color:#cfd8e8;
}


@media(max-width:992px){

.faq-heading h2{
    font-size:42px;
}

.faq-heading p{
    font-size:18px;
}

.faq-question{
    padding:28px 28px;
}

.faq-question span{
    font-size:19px;
}

.faq-answer p{
    padding:0 28px 28px;
    font-size:17px;
}

}

@media(max-width:768px){

.faq-section{
    padding:70px 20px 80px;
}

.faq-heading{
    margin-bottom:45px;
}

.faq-heading h2{
    font-size:34px;
}

.faq-heading p{
    font-size:16px;
}

.faq-container{
    gap:18px;
}

.faq-item{
    border-radius:18px;
}

.faq-question{
    padding:22px 22px;
}

.faq-question span{
    font-size:17px;
    line-height:1.5;
}

.faq-question i{
    font-size:18px;
}

.faq-answer p{
    padding:0 22px 24px;
    font-size:15px;
    line-height:1.8;
}

}

.final-cta-footer{
    background:#071633;
    overflow:hidden;
}

.cta-section{
    text-align:center;
    padding:90px 20px 80px;
    background:linear-gradient(90deg,#04122f,#071633,#04122f);
}

.cta-section h2{
    font-size:62px;
    font-weight:800;
    color:#fff;
    line-height:1.1;
    margin-bottom:28px;
    letter-spacing:-1px;
}

.cta-section p{
    font-size:19px;
    line-height:1.8;
    color:#d2d8e5;
    margin-bottom:42px;
}

.cta-section p span{
    color:#38e66f;
    font-weight:700;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:235px;
    height:76px;
    border-radius:20px;
    background:#2fc84f;
    color:#fff;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 12px 35px rgba(47,200,79,0.25);
}

.cta-btn:hover{
    transform:translateY(-3px);
    background:#26b645;
}

.trusted-text{
    margin-top:38px;
    font-size:15px;
    color:#667899;
}

.footer{
    padding:95px 140px 45px;
    background:#071633;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    gap:120px;
    padding-bottom:65px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.footer-brand{
    max-width:460px;
}

.logo-box{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:28px;
}

.logo-circle{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#2fc84f;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-weight:800;
    font-size:20px;
}

.footer-brand h3{
    color:#2fc84f;
    font-size:25px;
    font-weight:800;
}

.footer-brand p{
    color:#b8c3d8;
    font-size:17px;
    line-height:1.8;
}

.footer-links{
    display:flex;
    gap:95px;
}

.footer-column{
    display:flex;
    flex-direction:column;
}

.footer-column h4{
    color:#fff;
    font-size:16px;
    margin-bottom:28px;
    font-weight:700;
}

.footer-column a{
    color:#9fb0cc;
    text-decoration:none;
    margin-bottom:20px;
    font-size:16px;
    transition:.3s;
}

.footer-column a:hover{
    color:#fff;
}

.footer-bottom{
    padding-top:34px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-bottom p{
    color:#9fb0cc;
    font-size:15px;
}

.whatsapp-btn{
    position:fixed;
    right:24px;
    bottom:24px;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    padding:16px 24px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(37,211,102,0.3);
    z-index:999;
    cursor:pointer;
}

.whatsapp-btn i{
    font-size:28px;
}

@media(max-width:1200px){

    .footer{
        padding:80px 60px 40px;
    }

    .footer-top{
        gap:60px;
    }

    .footer-links{
        gap:50px;
    }
}

@media(max-width:992px){

    .cta-section h2{
        font-size:46px;
    }

    .footer-top{
        flex-direction:column;
    }

    .footer-links{
        width:100%;
        justify-content:space-between;
    }
}

@media(max-width:768px){

    .cta-section{
        padding:70px 20px;
    }

    .cta-section h2{
        font-size:34px;
    }

    .cta-section p{
        font-size:16px;
    }

    .cta-btn{
        width:210px;
        height:66px;
        font-size:17px;
    }

    .footer{
        padding:65px 24px 35px;
    }

    .footer-links{
        flex-direction:column;
        gap:35px;
    }

    .footer-bottom{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .whatsapp-btn{
        right:16px;
        bottom:16px;
        padding:14px 20px;
        font-size:16px;
    }

    .whatsapp-btn i{
        font-size:24px;
    }
}

@media(max-width:1400px){

header{
    padding:0 40px;
}

.hero,
.productivity-section,
.sales-section,
.team-features-section,
.ai-chat-section{
    padding-left:40px;
    padding-right:40px;
}

.continuation-section{
    padding:0 40px 90px;
}

.footer{
    padding:85px 60px 40px;
}

.hero-title{
    font-size:56px;
}

.team-heading h2,
.ai-left h2,
.faq-heading h2,
.security-heading h2{
    font-size:48px;
}

}


@media(max-width:1024px){

header{
    padding:18px 24px;
    height:auto;
    flex-wrap:wrap;
    gap:18px;
}

nav{
    gap:22px;
    flex-wrap:wrap;
}

nav a{
    font-size:15px;
}

.header-right{
    gap:10px;
}

.btn-dark,
.btn-outline{
    padding:10px 18px;
    font-size:14px;
}


.hero{
    flex-direction:column;
    text-align:center;
    padding:70px 24px;
    gap:70px;
}

.hero-left,
.hero-right{
    width:100%;
}

.hero-sub{
    width:100%;
}

.hero-buttons{
    justify-content:center;
}

.hero-title{
    font-size:48px;
}

.circle-wrapper{
    width:430px;
    height:430px;
}

.middle-circle{
    width:320px;
    height:320px;
}

.inner-circle{
    width:210px;
    height:210px;
    font-size:110px;
}


.productivity-section{
    padding:70px 24px;
}

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

.section-title h2{
    font-size:38px;
}


.continuation-section{
    padding:0 24px 70px;
}

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


.sales-section{
    padding:75px 24px;
}

.sales-container{
    flex-direction:column;
}

.sales-left,
.sales-right{
    width:100%;
}

.sales-left{
    text-align:center;
}

.sales-left h2{
    font-size:44px;
}


.team-features-section{
    padding:75px 24px;
}

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

.team-heading h2{
    font-size:42px;
}


.ai-chat-section{
    padding:75px 24px;
}

.ai-container{
    flex-direction:column;
}

.ai-left,
.ai-right{
    width:100%;
}

.ai-left h2{
    font-size:44px;
}


.security-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.security-heading{
    margin-bottom:65px;
}


.faq-heading h2{
    font-size:42px;
}


.footer{
    padding:70px 24px 35px;
}

.footer-top{
    flex-direction:column;
    gap:60px;
}

.footer-links{
    width:100%;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

}


@media(max-width:768px){

body{
    overflow-x:hidden;
}

header{
    padding:15px 18px;
    justify-content:space-between;
}

nav{
    display:none;
}

.header-right{
    width:100%;
    justify-content:flex-end;
}

.lang{
    display:none;
}

.btn-outline{
    display:none;
}

.btn-dark{
    padding:10px 16px;
    border-radius:10px;
    font-size:14px;
}


.hero{
    padding:45px 20px 60px;
    gap:50px;
}

.badge{
    padding:10px 16px;
}

.badge span{
    font-size:14px;
}

.hero-title{
    font-size:36px;
    line-height:1.2;
}

.hero-sub{
    font-size:16px;
    line-height:1.8;
}

.hero-buttons{
    flex-direction:column;
    width:100%;
}

.hero-btn{
    width:100%;
    padding:18px 20px;
    font-size:16px;
}

.circle-wrapper{
    width:320px;
    height:320px;
}

.middle-circle{
    width:235px;
    height:235px;
}

.inner-circle{
    width:150px;
    height:150px;
    font-size:80px;
}

.icon-box{
    width:52px;
    height:52px;
    font-size:20px;
}

.icon-small{
    width:42px;
    height:42px;
    font-size:16px;
}


.section-title h2,
.team-heading h2,
.ai-left h2,
.sales-left h2,
.security-heading h2,
.faq-heading h2,
.cta-section h2{
    font-size:32px;
}

.section-title p,
.team-heading p,
.ai-desc,
.sales-desc,
.security-heading p,
.faq-heading p{
    font-size:16px;
    line-height:1.7;
}


.productivity-section{
    padding:60px 20px;
}

.product-card{
    padding:24px;
}

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

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


.continuation-section{
    padding:0 20px 60px;
}

.translate-card,
.account-card{
    padding:24px;
}

.account-card{
    flex-direction:column;
}

.account-left,
.account-right{
    width:100%;
}

.translate-box{
    flex-direction:column;
    gap:12px;
    height:auto;
    padding:25px;
}


.sales-section{
    padding:60px 20px;
}

.sales-item{
    gap:16px;
    align-items:flex-start;
}

.sales-number{
    min-width:50px;
    height:50px;
    font-size:24px;
}

.sales-content h3{
    font-size:20px;
}

.sales-content p{
    font-size:15px;
}

.pipeline-board{
    flex-direction:column;
    height:auto;
}

.pipeline-column{
    width:100%;
}


.team-features-section{
    padding:60px 20px;
}

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

.team-card{
    padding:24px;
}

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

.team-card p{
    font-size:15px;
}


.ai-chat-section{
    padding:60px 20px;
}

.ai-feature-card{
    padding:20px;
}

.ai-content h3{
    font-size:20px;
}

.ai-content p{
    font-size:15px;
}

.chat-preview{
    padding:18px;
    height:auto;
}

.chat-window{
    padding:16px;
}

.chat-bubble{
    font-size:14px;
    padding:12px 14px;
}

.translate-status{
    margin-left:0;
    font-size:15px;
}


.testimonial-heading h2{
    font-size:32px;
}

.testimonial-heading p{
    font-size:15px;
}

.testimonial-card{
    width:290px;
}


.security-section{
    padding:60px 20px;
}

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

.security-card p{
    font-size:15px;
}


.faq-section{
    padding:60px 20px 70px;
}

.faq-question{
    padding:22px;
}

.faq-question span{
    font-size:17px;
}

.faq-answer p{
    padding:0 22px 24px;
    font-size:15px;
}


.cta-section{
    padding:65px 20px;
}

.cta-section p{
    font-size:16px;
}

.cta-btn{
    width:100%;
    max-width:260px;
    height:64px;
    font-size:16px;
}


.footer{
    padding:60px 20px 30px;
}

.footer-links{
    flex-direction:column;
    gap:35px;
}

.footer-brand p{
    font-size:15px;
}

.footer-column a{
    font-size:15px;
}

.footer-bottom{
    flex-direction:column;
    gap:16px;
    text-align:center;
}

.whatsapp-btn{
    right:14px;
    bottom:14px;
    padding:13px 18px;
    font-size:15px;
}

.whatsapp-btn i{
    font-size:22px;
}

}

