/* =========================
   HEREPE STYLE.CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#0f172a;
    overflow-x:hidden;
    line-height:1.6;
}

/* =========================
   GLOBAL
========================= */

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:0.3s ease;
}

ul{
    list-style:none;
}

.container{
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

/* =========================
   BACKGROUND
========================= */

.grid-bg{
    background-image:
    linear-gradient(rgba(15,23,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.03) 1px, transparent 1px);
    background-size:60px 60px;
}

/* =========================
   TYPOGRAPHY
========================= */

.text-gradient{
    background:linear-gradient(90deg,#4f46e5,#06b6d4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-title{
    font-size:56px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-2px;
}

.section-subtitle{
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:4px;
    color:#4f46e5;
}

.section-description{
    font-size:18px;
    color:#64748b;
    line-height:1.8;
}

/* =========================
   NAVBAR
========================= */

nav{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(14px);
    border-bottom:1px solid #f1f5f9;
}

nav .logo{
    font-size:32px;
    font-weight:900;
    color:#0f172a;
}

nav .logo span{
    color:#4f46e5;
}

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

nav .menu a{
    color:#475569;
    font-size:15px;
    font-weight:500;
}

nav .menu a:hover{
    color:#4f46e5;
}

.nav-btn{
    padding:14px 28px;
    background:#0f172a;
    color:#fff;
    border-radius:999px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(15,23,42,0.08);
}

.nav-btn:hover{
    background:#4f46e5;
    transform:translateY(-2px);
}

/* =========================
   DROPDOWN
========================= */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    width:320px;
    background:#fff;
    border:1px solid #f1f5f9;
    border-radius:28px;
    padding:14px;
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
    box-shadow:0 25px 50px rgba(15,23,42,0.08);
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    top:110%;
}

.dropdown-item{
    display:flex;
    gap:16px;
    padding:16px;
    border-radius:20px;
}

.dropdown-item:hover{
    background:#f8fafc;
}

.dropdown-icon{
    width:48px;
    height:48px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef2ff;
    color:#4f46e5;
    font-size:18px;
}

.dropdown-content h4{
    font-size:16px;
    font-weight:700;
    color:#0f172a;
}

.dropdown-content p{
    margin-top:4px;
    font-size:13px;
    color:#64748b;
    line-height:1.6;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    position:relative;
    overflow:hidden;
    padding:120px 0;
}

.blur-ball{
    position:absolute;
    width:400px;
    height:400px;
    border-radius:999px;
    filter:blur(120px);
    z-index:-1;
}

.blur-indigo{
    background:#c7d2fe;
    top:-100px;
    left:-120px;
}

.blur-cyan{
    background:#cffafe;
    bottom:-100px;
    right:-120px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    border-radius:999px;
    background:#eef2ff;
    border:1px solid #c7d2fe;
    color:#4338ca;
    font-size:14px;
    font-weight:600;
}

.hero-title{
    margin-top:32px;
    font-size:76px;
    line-height:1.02;
    font-weight:900;
    letter-spacing:-3px;
    color:#0f172a;
}

.hero-description{
    margin-top:28px;
    font-size:20px;
    color:#64748b;
    line-height:1.9;
    max-width:680px;
}

.hero-actions{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:40px;
}

.primary-btn{
    padding:18px 36px;
    border-radius:20px;
    background:#0f172a;
    color:#fff;
    font-weight:700;
}

.primary-btn:hover{
    background:#4f46e5;
    transform:translateY(-2px);
}

.secondary-btn{
    padding:18px 36px;
    border-radius:20px;
    border:1px solid #e2e8f0;
    color:#0f172a;
    font-weight:700;
    background:#fff;
}

.secondary-btn:hover{
    border-color:#4f46e5;
    color:#4f46e5;
}

/* =========================
   CARDS
========================= */

.card{
    background:#fff;
    border:1px solid #f1f5f9;
    border-radius:32px;
    padding:40px;
    transition:0.35s ease;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(15,23,42,0.06);
}

.card-icon{
    width:64px;
    height:64px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef2ff;
    color:#4f46e5;
    font-size:24px;
}

.card h3{
    margin-top:28px;
    font-size:30px;
    line-height:1.2;
    font-weight:900;
    color:#0f172a;
}

.card p{
    margin-top:18px;
    color:#64748b;
    line-height:1.8;
}

/* =========================
   DASHBOARD UI
========================= */

.dashboard-box{
    background:#fff;
    border:1px solid rgba(79,70,229,0.12);
    border-radius:36px;
    padding:36px;
    box-shadow:0 20px 60px rgba(79,70,229,0.08);
}

.dashboard-card{
    border:1px solid #f1f5f9;
    border-radius:28px;
    padding:28px;
}

.dashboard-stat{
    font-size:42px;
    font-weight:900;
    color:#0f172a;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-card{
    background:#fff;
    border:1px solid #f1f5f9;
    border-radius:32px;
    padding:42px;
    transition:0.35s ease;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(15,23,42,0.06);
}

.testimonial-stars{
    display:flex;
    gap:4px;
    color:#fbbf24;
}

.testimonial-text{
    margin-top:28px;
    font-size:18px;
    line-height:1.9;
    color:#475569;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:32px;
}

.user-avatar{
    width:56px;
    height:56px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef2ff;
    color:#4f46e5;
    font-weight:800;
}

/* =========================
   CONTACT FORM
========================= */

.contact-box{
    background:#f8fafc;
    border:1px solid #f1f5f9;
    border-radius:48px;
    padding:60px;
}

.form-group{
    margin-bottom:22px;
}

.form-label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:700;
    color:#334155;
}

.form-control{
    width:100%;
    padding:16px 20px;
    border-radius:20px;
    border:1px solid #e2e8f0;
    font-size:15px;
    transition:0.3s ease;
}

.form-control:focus{
    outline:none;
    border-color:#4f46e5;
    box-shadow:0 0 0 4px rgba(79,70,229,0.08);
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
    position:relative;
    overflow:hidden;
    background:#0f172a;
    border-radius:42px;
    padding:80px;
    color:#fff;
}

.cta-title{
    font-size:60px;
    line-height:1.1;
    font-weight:900;
}

.cta-description{
    margin-top:24px;
    font-size:20px;
    color:#cbd5e1;
    line-height:1.8;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#fff;
    border-top:1px solid #f1f5f9;
    padding:80px 0 40px;
}

.footer-title{
    font-size:20px;
    font-weight:800;
    color:#0f172a;
}

.footer-links{
    margin-top:24px;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#64748b;
}

.footer-links a:hover{
    color:#4f46e5;
}

.footer-bottom{
    margin-top:60px;
    padding-top:30px;
    border-top:1px solid #f1f5f9;
    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1024px){

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

    .section-title{
        font-size:44px;
    }

    .cta-title{
        font-size:42px;
    }

}

@media(max-width:768px){

    .hero{
        padding:90px 0;
    }

    .hero-title{
        font-size:44px;
        line-height:1.1;
    }

    .section-title{
        font-size:36px;
    }

    .cta-section{
        padding:50px 30px;
    }

    .cta-title{
        font-size:34px;
    }

    .card,
    .testimonial-card{
        padding:30px;
    }

}

@media(max-width:576px){

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

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

    .primary-btn,
    .secondary-btn{
        width:100%;
        justify-content:center;
    }

}