/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#F8FAFC;
    color:#1E293B;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*==================================================
CONTAINER
==================================================*/

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 30px;
}

/*==================================================
GLOBAL SECTION
==================================================*/

section{
    width:100%;
}

.section-header{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    padding:8px 20px;
    border-radius:50px;
    background:#FFF4EC;
    color:#F97316;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.section-header h2{
    font-size:56px;
    line-height:1.1;
    color:#143863;
    margin-bottom:25px;
    font-weight:800;
}

.section-header h2 span{
    display:block;
    color:#F97316;
}

.section-header p{
    font-size:20px;
    line-height:1.8;
    color:#64748B;
}

/*==================================================
HEADER
==================================================*/

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#FFFFFF;
    box-shadow:0 2px 15px rgba(0,0,0,.05);
}

.header .container{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:58px;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar a{
    color:#143863;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:#F97316;
}

.coming-btn{
    background:#143863;
    color:#FFFFFF;
    padding:12px 24px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.coming-btn:hover{
    background:#F97316;
}

.mobile-menu{
    display:none;
    border:none;
    background:none;
    cursor:pointer;
    font-size:28px;
    color:#143863;
}

/*==================================================
HERO
==================================================*/

.hero{
    min-height:85vh;
    display:flex;
    align-items:center;
    padding:90px 0;

    background-image:
    linear-gradient(
    rgba(10,30,60,.82),
    rgba(10,30,60,.82)),
    url("../images/hero.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-wrapper{
    width:100%;
    max-width:1600px;
    margin:auto;
    padding:0 120px;
}

.hero-content{
    max-width:700px;
}

.hero-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.2);
    color:white;
    font-size:14px;
    font-weight:600;
    margin-bottom:30px;
}

.hero h1{
    font-size:68px;
    line-height:1.05;
    color:white;
    margin-bottom:30px;
    font-weight:800;
}

.hero h1 span{
    display:block;
    color:#F97316;
}

.hero p{
    color:white;
    font-size:22px;
    line-height:1.6;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.btn-primary{
    background:#F97316;
    color:white;
    padding:16px 32px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:white;
    color:#143863;
}

.btn-secondary{
    border:2px solid white;
    color:white;
    padding:14px 32px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:white;
    color:#143863;
}

.hero-points{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.hero-points span{
    color:white;
    font-size:16px;
    font-weight:500;
}

/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

.container{
padding:0 25px;
}

.logo img{
height:50px;
}

.navbar{
display:none;
}

.coming-btn{
display:none;
}

.mobile-menu{
display:block;
}

.hero{
min-height:auto;
padding:80px 0;
}

.hero-wrapper{
padding:0 40px;
}

.hero h1{
font-size:52px;
}

.hero p{
font-size:19px;
}

.hero-buttons{
flex-direction:column;
align-items:flex-start;
}

.hero-points{
flex-direction:column;
gap:15px;
}

.section-header h2{
font-size:44px;
}

.section-header p{
font-size:18px;
}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:576px){

.container{
padding:0 20px;
}

.header .container{
height:80px;
}

.logo img{
height:42px;
}

.hero{
padding:70px 0;
}

.hero-wrapper{
padding:0;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:17px;
}

.hero-buttons{
width:100%;
}

.btn-primary,
.btn-secondary{
width:100%;
text-align:center;
}

.hero-points{
gap:12px;
}

.section-header{
margin-bottom:50px;
}

.section-header h2{
font-size:34px;
}

.section-header p{
font-size:17px;
}

}
/*==================================================
ABOUT
==================================================*/

.about{
    padding:100px 0;
    background:#FFFFFF;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-card{
    background:#FFFFFF;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-icon{
    font-size:42px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:24px;
    color:#143863;
    margin-bottom:18px;
    font-weight:700;
}

.feature-card p{
    font-size:16px;
    line-height:1.8;
    color:#64748B;
}

/*==================================================
WHY CLICK 'N' EVENT
==================================================*/

.why-section{
    background:#F8FAFC;
    padding:100px 0;
}

.problem-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin:60px 0;
}

.problem-card{
    background:#FFFFFF;
    padding:24px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
    font-size:18px;
    font-weight:600;
    color:#143863;
}

.problem-card:hover{
    transform:translateY(-5px);
}

.solution-box{
    background:#143863;
    border-radius:24px;
    padding:50px;
    text-align:center;
}

.solution-box h3{
    color:#FFFFFF;
    font-size:42px;
    margin-bottom:20px;
}

.solution-box p{
    color:rgba(255,255,255,.92);
    font-size:20px;
    line-height:1.8;
}

/*==================================================
EVENT JOURNEY
==================================================*/

.journey{
    background:#FFFFFF;
    padding:80px 0 100px;
}

.journey-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.journey-card{
    position:relative;
    border-radius:20px;
    padding:70px 30px 40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.journey-card:hover{
    transform:translateY(-8px);
}

.orange{
    background:#F97316;
}

.navy{
    background:#143863;
}

.step-circle{
    position:absolute;
    top:-25px;
    left:50%;
    transform:translateX(-50%);
    width:60px;
    height:60px;
    background:#FFFFFF;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
    color:#143863;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.journey-icon{
    font-size:46px;
    margin-bottom:25px;
}

.journey-card h3{
    color:#FFFFFF;
    font-size:28px;
    margin-bottom:15px;
    font-weight:700;
}

.journey-card p{
    color:rgba(255,255,255,.95);
    font-size:17px;
    line-height:1.7;
}

/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

.about,
.why-section,
.journey{
padding:80px 0;
}

.feature-grid{
grid-template-columns:repeat(2,1fr);
}

.problem-grid{
grid-template-columns:repeat(2,1fr);
}

.journey-grid{
grid-template-columns:repeat(2,1fr);
gap:50px 25px;
}

.solution-box{
padding:40px;
}

.solution-box h3{
font-size:36px;
}

.solution-box p{
font-size:18px;
}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:576px){

.about,
.why-section,
.journey{
padding:60px 0;
}

.feature-grid{
grid-template-columns:1fr;
}

.problem-grid{
grid-template-columns:1fr;
margin:40px 0;
}

.journey-grid{
grid-template-columns:1fr;
gap:50px;
}

.feature-card{
padding:35px 25px;
}

.problem-card{
padding:20px;
}

.solution-box{
padding:30px 20px;
}

.solution-box h3{
font-size:30px;
}

.solution-box p{
font-size:17px;
}

.journey-card{
padding:60px 25px 35px;
}

.journey-card h3{
font-size:24px;
}

.journey-card p{
font-size:16px;
}

}
/*==================================================
SMART PLANNER
==================================================*/

.planner{
    background:#F8FAFC;
    padding:100px 0;
}

.planner-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.planner-content h2{
    font-size:56px;
    color:#143863;
    margin:20px 0;
    font-weight:800;
}

.planner-content h2 span{
    color:#F97316;
}

.planner-content p{
    font-size:20px;
    line-height:1.8;
    color:#64748B;
    margin-bottom:40px;
}

.planner-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:40px;
}

.planner-feature{
    background:#FFFFFF;
    padding:18px;
    border-radius:16px;
    font-weight:600;
    color:#143863;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.planner-feature:hover{
    transform:translateY(-5px);
}

.planner-btn{
    display:inline-block;
    background:#F97316;
    color:#FFFFFF;
    padding:18px 36px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.planner-btn:hover{
    background:#143863;
}

.planner-card{
    background:#FFFFFF;
    padding:35px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.planner-header{
    font-size:28px;
    font-weight:700;
    color:#143863;
    margin-bottom:30px;
}

.planner-budget{
    color:#64748B;
    margin-bottom:25px;
}

.planner-budget strong{
    display:block;
    font-size:36px;
    color:#F97316;
    margin-top:8px;
}

.planner-progress{
    font-weight:600;
    margin-bottom:15px;
    color:#143863;
}

.progress-bar{
    height:12px;
    background:#E2E8F0;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:30px;
}

.progress-bar span{
    display:block;
    width:75%;
    height:100%;
    background:#22C55E;
}

.planner-card ul{
    margin-bottom:30px;
}

.planner-card li{
    margin-bottom:15px;
    color:#475569;
}

.planner-footer{
    border-top:1px solid #E2E8F0;
    padding-top:25px;
    color:#64748B;
}

.planner-footer strong{
    display:block;
    margin-top:8px;
    font-size:30px;
    color:#143863;
}

/*==================================================
FOUNDER
==================================================*/

.founder{
    background:#FFFFFF;
    padding:100px 0;
}

.founder-badge{
    display:table;
    margin:0 auto 50px;
    padding:10px 22px;
    border-radius:50px;
    background:#FFF4EC;
    color:#F97316;
    font-size:14px;
    font-weight:600;
}

.founder-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:70px;
    align-items:start;
}

.founder-image{
    text-align:center;
}

.founder-image img{
    width:100%;
    max-width:340px;
    height:auto;
    border-radius:24px;
    object-fit:contain;
    background:#FFFFFF;
    padding:12px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    transition:.3s;
}

.founder-image img:hover{
    transform:translateY(-5px);
}

.founder-content h2{
    font-size:54px;
    color:#143863;
    margin-bottom:20px;
    font-weight:800;
}

.founder-content h2 span{
    display:block;
    color:#F97316;
}

.founder-content h3{
    font-size:34px;
    color:#143863;
}

.founder-content h4{
    color:#F97316;
    font-size:22px;
    margin-bottom:30px;
}

.founder-content p{
    font-size:19px;
    line-height:1.8;
    color:#64748B;
    margin-bottom:20px;
}

.vision-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin:35px 0;
}

.vision-grid div{
    background:#F8FAFC;
    padding:18px;
    border-radius:14px;
    font-weight:600;
    color:#143863;
    transition:.3s;
}

.vision-grid div:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.founder-quote{
    background:#143863;
    color:#FFFFFF;
    padding:30px;
    border-radius:18px;
    margin:35px 0;
    font-size:22px;
    line-height:1.7;
    font-style:italic;
}

.founder-quote span{
    display:block;
    margin-top:20px;
    color:#FDBA74;
    font-style:normal;
    font-weight:600;
}

.founder-contact{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    color:#143863;
    font-weight:600;
}

/*==================================================
TABLET
==================================================*/

@media(max-width:992px){

.planner,
.founder{
padding:80px 0;
}

.planner-wrapper{
grid-template-columns:1fr;
gap:60px;
}

.planner-content{
text-align:center;
}

.planner-features{
grid-template-columns:1fr;
}

.founder-wrapper{
grid-template-columns:1fr;
text-align:center;
gap:50px;
}

.founder-image img{
max-width:280px;
}

.vision-grid{
grid-template-columns:1fr;
}

.founder-contact{
justify-content:center;
}

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:576px){

.planner,
.founder{
padding:60px 0;
}

.planner-content h2{
font-size:40px;
}

.planner-content p{
font-size:17px;
}

.planner-card{
padding:25px;
}

.planner-header{
font-size:24px;
}

.planner-budget strong{
font-size:30px;
}

.founder-content h2{
font-size:40px;
}

.founder-content h3{
font-size:28px;
}

.founder-content h4{
font-size:20px;
}

.founder-content p{
font-size:17px;
}

.founder-quote{
font-size:18px;
padding:25px;
}

}
/*=========================================
FOOTER
=========================================*/

.footer{
    background:#143863;
    color:#fff;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    align-items:start;
}

.footer-logo{
    height:70px;
    margin-bottom:25px;
}

.footer-tagline{
    color:#F97316;
    font-weight:600;
    margin-bottom:20px;
}

.footer-col h3{
    margin-bottom:25px;
    font-size:20px;
}

.footer-col p{
    margin-bottom:18px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
}

.footer-col i{
    width:30px;
    color:#FDBA74;
}

.social-icons{
    display:flex;
    gap:20px;
    margin-top:25px;
}

.social-icons a{
    color:#FDBA74;
    font-size:25px;
    transition:all .3s ease;
}

.social-icons a:hover{
    color:#F97316;
    transform:translateY(-3px);
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,.75);
}

/*=========================
TABLET
=========================*/

@media(max-width:992px){

.navbar{
        position:absolute;
        top:95px;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        box-shadow:0 8px 20px rgba(0,0,0,.08);
    }

    .navbar.active{
        display:block;
    }

    .navbar ul{
        flex-direction:column;
        gap:0;
    }

    .navbar li{
        border-bottom:1px solid #eee;
    }

    .navbar a{
        display:block;
        padding:18px 30px;
    }

    .mobile-menu{
        display:block;
        cursor:pointer;
        font-size:30px;
        color:#143863;
    }

.footer-grid{
grid-template-columns:1fr;
gap:40px;
}

}

/*=========================
MOBILE
=========================*/

@media(max-width:576px){

.hero-wrapper{
    padding:0 20px;
}

.footer{
padding:50px 0 20px;
}

.footer-logo{
height:55px;
}

.footer-col{
text-align:center;
}

.social-icons{
justify-content:center;
}

}