*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#111;
}

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

a{
    text-decoration:none;
}

button{
    border:none;
    cursor:pointer;
    font-family:'Inter',sans-serif;
}

.header{
    background:#050505;
    border-bottom:1px solid rgba(255,255,255,.06);
    position:sticky;
    top:0;
    z-index:999;
}

.nav{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo img{
    max-width: 120px;
}


.menu{
    display:flex;
    gap:28px;
}

.menu a{
    color:#fff;
    font-size:15px;
    font-weight:500;
}

.nav-buttons{
    display:flex;
    gap:14px;
}

.btn-primary{
    background:#ff7a00;
    color:#fff;
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
    font-size:15px;
}

.btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    padding:14px 24px;
    border-radius:12px;
    font-weight:600;
}

.btn-dark{
    background:#111;
    color:#fff;
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
}

.hero{
    background:
    radial-gradient(circle at 85% 45%, rgba(255,122,0,.32), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(255,122,0,.10), transparent 30%),
    linear-gradient(180deg,#050505 0%,#090604 100%);
    padding:55px 0 50px;
    overflow:hidden;
    min-height:560px;
    display:flex;
    align-items:center;
}

.hero-grid{
    display:grid;
    grid-template-columns:46% 54%;
    gap:20px;
    align-items:center;
}

.hero-left h1{
    font-size:52px;
    line-height:1.08;
    font-weight:900;
    color:#fff;
    margin-bottom:22px;
    max-width:620px;
}

.hero-left h1 span{
    color:#ff6a00;
}

.hero-left p{
    color:#f1f1f1;
    font-size:17px;
    line-height:1.65;
    margin-bottom:28px;
    max-width:600px;
}

.hero-list{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:32px;
}

.hero-list div{
    color:#fff;
    font-size:14px;
    display:flex;
    align-items:center;
}

.hero-list i{
    color:#ff6a00;
    margin-right:7px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    margin-bottom:18px;
}

.hero-left small{
    color:#d7d7d7;
    font-size:13px;
}

.hero-right{
    position:relative;
    min-height:430px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.dashboard{
    padding:0;
    width:100%;
    background:transparent;
}

.hero-mockup{
    width:720px;
    max-width:none;
    margin-right:-60px;
    position:relative;
}

.hero-mockup img{
    width:100%;
    height:auto;
    display:block;
    object-fit:contain;
    filter:drop-shadow(0 35px 45px rgba(0,0,0,.55));
}

.dashboard-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.dashboard-logo{
    color:#ff7a00;
    font-weight:800;
}

.search-bar{
    width:200px;
    height:38px;
    border-radius:12px;
    background:#1b1b1b;
}

.kanban{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

.kanban-column{
    background:#141414;
    padding:18px;
    border-radius:18px;
}

.kanban-column h4{
    color:#fff;
    margin-bottom:15px;
}

.card{
    background:#1c1c1c;
    padding:16px;
    border-radius:14px;
    margin-bottom:12px;
    display:flex;
    justify-content:space-between;
}

.card span{
    color:#fff;
}

.card strong{
    color:#ff7a00;
}

.features{
    padding:60px 0;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.feature-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:25px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-5px);
}

.feature-card i{
    color:#ff7a00;
    font-size:30px;
    margin-bottom:20px;
}

.feature-card h3{
    font-size:18px;
    margin-bottom:12px;
}

.feature-card p{
    color:#666;
    line-height:1.6;
    font-size:14px;
}

.numbers{
    background:#050505;
    padding:35px 0;
}

.numbers-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.number-box{
    text-align:center;
    color:#fff;
}

.number-box h2{
    color:#ff7a00;
    margin-bottom:10px;
}

.how{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
}

.steps{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.step{
    text-align:center;
}

.step-icon{
    width:65px;
    height:65px;
    background:#ff7a00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    font-weight:800;
    margin-bottom:20px;
}

.step h3{
    margin-bottom:10px;
}

.step p{
    color:#666;
    line-height:1.6;
}

.clients{
    padding:70px 0;
}

.clients-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.client-logo{
    font-size:32px;
    font-weight:900;
    color:#222;
    opacity:.6;
}

.cta{
    background:#050505;
    padding:90px 0;
}

.cta-grid{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:40px;
}

.cta-left{
    color:#fff;
}

.cta-left h2{
    font-size:52px;
    line-height:1.1;
    margin-bottom:30px;
}

.cta-left span{
    color:#ff7a00;
}

.cta-left ul{
    list-style:none;
}

.cta-left li{
    margin-bottom:16px;
    color:#ddd;
}

.cta-right{
    background:#ff7a00;
    border-radius:28px;
    padding:45px;
    color:#fff;
}

.cta-right h2{
    font-size:36px;
    margin-bottom:25px;
}

.cta-right ul{
    list-style:none;
    margin-bottom:25px;
}

.cta-right li{
    margin-bottom:12px;
}

.testimonials{
    background:#050505;
    padding:80px 0;
}

.testimonials .section-title h2{
    color:#fff;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial{
    background:#0f0f0f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:35px;
    color:#fff;
}

.testimonial p{
    line-height:1.8;
    margin-bottom:30px;
    color:#ddd;
}

.user{
    display:flex;
    align-items:center;
    gap:15px;
}

.avatar{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#ff7a00;
}

.user span{
    color:#999;
    display:block;
    margin-top:4px;
}

.final-cta{
    background:#ff7a00;
    padding:45px 0;
}

.final-grid{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.final-grid h2{
    color:#fff;
    font-size:38px;
    margin-bottom:8px;
}

.final-grid p{
    color:#fff;
}

.footer{
    background:#050505;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr 1.5fr;
    gap:40px;
    padding-bottom:60px;
}

.footer p{
    color:#aaa;
    line-height:1.8;
    margin:25px 0;
}

.socials{
    display:flex;
    gap:15px;
}

.socials i{
    width:42px;
    height:42px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer h4{
    color:#fff;
    margin-bottom:20px;
}

.footer a{
    display:block;
    color:#aaa;
    margin-bottom:12px;
}

.newsletter{
    display:flex;
    margin-top:20px;
}

.newsletter input{
    flex:1;
    height:54px;
    border:none;
    background:#111;
    color:#fff;
    padding:0 15px;
    border-radius:12px 0 0 12px;
}

.newsletter button{
    width:60px;
    background:#ff7a00;
    color:#fff;
    border-radius:0 12px 12px 0;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.06);
    text-align:center;
    padding:25px;
    color:#888;
}