/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#0f172a;
    overflow-x:hidden;
    line-height:1.6;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   ROOT COLORS
========================= */

:root{
    --primary:#2563EB;
    --primary-dark:#1D4ED8;
    --secondary:#22C55E;

    --text:#0f172a;
    --text-light:#64748b;

    --white:#ffffff;
    --border:#e2e8f0;

    --shadow-sm:0 10px 30px rgba(15,23,42,0.05);
    --shadow-md:0 18px 45px rgba(15,23,42,0.08);
    --shadow-lg:0 24px 70px rgba(15,23,42,0.12);

    --radius:24px;
    --transition:.35s ease;
}

/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eef2ff;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--primary),#60a5fa);
    border-radius:20px;
}

/* =========================
   BACKGROUND EFFECTS
========================= */

body::before,
body::after{
    content:"";
    position:fixed;
    width:420px;
    height:420px;
    border-radius:50%;
    filter:blur(130px);
    z-index:-1;
    opacity:.10;
}

body::before{
    background:var(--primary);
    top:-180px;
    left:-180px;
}

body::after{
    background:var(--secondary);
    bottom:-180px;
    right:-180px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(226,232,240,.9);
    transition:var(--transition);
}

.nav-container{
    max-width:1220px;
    margin:auto;
    padding:14px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-box img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.logo{
    font-family:'Poppins',sans-serif;
    font-size:24px;
    font-weight:800;
    color:var(--text);
}

.logo span{
    color:var(--primary);
}

.nav-menu{
    display:flex;
    align-items:center;
    list-style:none;
    gap:28px;
}

.nav-menu a{
    position:relative;
    color:#334155;
    font-weight:600;
    font-size:15px;
    transition:var(--transition);
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0%;
    height:2px;
    background:var(--primary);
    border-radius:10px;
    transition:var(--transition);
}

.nav-menu a:hover{
    color:var(--primary);
}

.nav-menu a:hover::after{
    width:100%;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:var(--white);
    padding:14px 26px;
    border-radius:14px;
    font-weight:700;
    font-size:15px;

    transition:var(--transition);
    box-shadow:0 10px 24px rgba(37,99,235,.22);
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(37,99,235,.32);
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 26px;
    border-radius:14px;

    border:1px solid var(--border);
    color:var(--text);
    font-weight:700;

    background:rgba(255,255,255,.7);
    backdrop-filter:blur(12px);

    transition:var(--transition);
}

.btn-outline:hover{
    border-color:var(--primary);
    color:var(--primary);
    transform:translateY(-3px);
}

/* =========================
   MAIN
========================= */

main{
    padding-top:88px;
}

/* =========================
   HERO
========================= */

.about-hero{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
        180deg,
        #ffffff,
        #eef5ff
    );

    padding:100px 20px 90px;
}

.hero-container{
    max-width:1220px;
    margin:auto;

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;
    background:#eaf2ff;
    color:var(--primary);

    border-radius:999px;
    font-size:14px;
    font-weight:700;

    margin-bottom:24px;
}

.about-hero h1{
    font-family:'Poppins',sans-serif;
    font-size:64px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:-1px;
}

.about-hero h1 span{
    color:var(--primary);
}

.about-hero p{
    margin-top:24px;
    color:var(--text-light);
    font-size:18px;
    line-height:1.9;
    max-width:650px;
}

/* =========================
   HERO CARD
========================= */

.hero-card{
    background:rgba(255,255,255,.85);
    border:1px solid rgba(226,232,240,.9);
    border-radius:30px;
    padding:34px;

    backdrop-filter:blur(14px);

    box-shadow:var(--shadow-lg);

    position:relative;
    overflow:hidden;
}

.hero-card::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;

    width:180px;
    height:180px;

    background:rgba(37,99,235,.08);
    border-radius:50%;
}

.hero-card h2{
    font-family:'Poppins',sans-serif;
    font-size:28px;
    margin-bottom:24px;
}

.market-points{
    display:grid;
    gap:16px;
}

.market-point{
    background:#f8fafc;
    padding:18px 20px;
    border-radius:18px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    border:1px solid #eef2f7;
    transition:var(--transition);
}

.market-point:hover{
    transform:translateX(6px);
    background:#ffffff;
    box-shadow:var(--shadow-sm);
}

.market-point h4{
    font-size:15px;
    margin-bottom:4px;
}

.market-point p{
    color:var(--text-light);
    font-size:13px;
}

.market-point span{
    color:#16a34a;
    font-weight:800;
    font-size:15px;
}

/* =========================
   STATS
========================= */

.stats{
    max-width:1220px;
    margin:-45px auto 0;
    padding:0 20px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;

    position:relative;
    z-index:5;
}

.stat-card{
    background:rgba(255,255,255,.9);
    border:1px solid rgba(226,232,240,.9);

    border-radius:24px;
    padding:28px;

    backdrop-filter:blur(12px);

    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.stat-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-md);
}

.stat-card h3{
    color:var(--primary);
    font-size:34px;
    font-weight:800;
    margin-bottom:8px;
}

.stat-card p{
    color:var(--text-light);
    font-weight:600;
}

/* =========================
   SECTION
========================= */

.section{
    max-width:1220px;
    margin:auto;
    padding:95px 20px;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:auto;
}

.section-title h2{
    font-family:'Poppins',sans-serif;
    font-size:46px;
    line-height:1.15;
}

.section-title h2 span{
    color:var(--primary);
}

.section-title p{
    margin-top:16px;
    color:var(--text-light);
    line-height:1.9;
    font-size:16px;
}

/* =========================
   STORY SECTION
========================= */

.story{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:36px;
}

.story-box,
.highlight{
    border-radius:32px;
    padding:44px;
}

.story-box{
    background:rgba(255,255,255,.92);
    border:1px solid rgba(226,232,240,.9);
    box-shadow:var(--shadow-sm);
}

.story-box h2,
.highlight h2{
    font-family:'Poppins',sans-serif;
    font-size:40px;
    line-height:1.2;
    margin-bottom:20px;
}

.story-box p{
    color:var(--text-light);
    line-height:1.9;
    margin-bottom:18px;
}

.highlight{
    background:
    linear-gradient(
        135deg,
        var(--primary),
        #0f172a
    );

    color:white;

    box-shadow:
    0 30px 80px rgba(37,99,235,.25);
}

.highlight p{
    color:#dbeafe;
    line-height:1.9;
}

/* =========================
   CARD GRID
========================= */

.grid{
    margin-top:50px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:28px;
}

.card{
    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,.95);

    padding:34px;
    border-radius:28px;

    border:1px solid rgba(226,232,240,.9);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);
}

.card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        #60a5fa
    );
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.icon{
    width:62px;
    height:62px;

    border-radius:18px;

    background:#eff6ff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    margin-bottom:22px;
}

.card h3{
    font-size:24px;
    margin-bottom:14px;
}

.card p{
    color:var(--text-light);
    line-height:1.9;
}

/* =========================
   VALUE SECTION
========================= */

.value-section{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #172554
    );

    color:white;
    padding:100px 20px;
}

.value-section::before{
    content:"";
    position:absolute;

    width:350px;
    height:350px;

    background:rgba(56,189,248,.10);
    border-radius:50%;
    filter:blur(80px);

    top:-120px;
    right:-120px;
}

.value-container{
    position:relative;
    z-index:2;

    max-width:1220px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.value-container h2{
    font-family:'Poppins',sans-serif;
    font-size:48px;
    line-height:1.15;
}

.value-container h2 span{
    color:#38bdf8;
}

.value-container p{
    margin-top:22px;
    color:#cbd5e1;
    line-height:1.9;
}

.value-list{
    display:grid;
    gap:18px;
}

.value-list div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);

    padding:20px;
    border-radius:20px;

    backdrop-filter:blur(12px);

    transition:var(--transition);
}

.value-list div:hover{
    transform:translateX(8px);
    background:rgba(255,255,255,.12);
}

/* =========================
   TEAM
========================= */

.team-card{
    text-align:center;
    max-width:430px;
    margin:auto;
}

.avatar{
    width:115px;
    height:115px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    margin:0 auto 24px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    font-size:42px;
    font-weight:800;

    box-shadow:
    0 20px 40px rgba(37,99,235,.22);
}

/* =========================
   CTA
========================= */

.cta{
    max-width:1220px;
    margin:30px auto 90px;

    padding:70px 20px;

    border-radius:36px;
    text-align:center;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e3a8a
    );

    color:white;

    position:relative;
    overflow:hidden;
}

.cta::before{
    content:"";
    position:absolute;

    width:260px;
    height:260px;

    background:rgba(255,255,255,.08);
    border-radius:50%;

    top:-80px;
    right:-80px;
}

.cta h2{
    position:relative;
    z-index:2;

    font-family:'Poppins',sans-serif;
    font-size:46px;
    line-height:1.2;
}

.cta p{
    position:relative;
    z-index:2;

    color:#cbd5e1;

    margin:18px auto 32px;

    max-width:700px;
    line-height:1.9;
    font-size:16px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:
    linear-gradient(
        180deg,
        #f8fafc,
        #eef4ff
    );

    border-top:1px solid var(--border);

    padding:80px 20px 28px;
}

.footer-grid{
    max-width:1220px;
    margin:auto;

    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:45px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
}

.footer-logo img{
    width:54px;
    height:54px;
    object-fit:contain;
}

.footer-logo-text{
    font-family:'Poppins',sans-serif;
    font-size:24px;
    font-weight:800;
}

.footer-logo-text span{
    color:var(--primary);
}

footer h3{
    margin-bottom:18px;
    font-size:20px;
}

footer p,
footer a{
    color:var(--text-light);
    line-height:1.9;
}

footer a{
    display:block;
    margin-top:10px;
    transition:var(--transition);
}

footer a:hover{
    color:var(--primary);
    transform:translateX(5px);
}

.copy{
    max-width:1220px;
    margin:50px auto 0;

    padding-top:24px;
    border-top:1px solid var(--border);

    text-align:center;
    color:#94a3b8;
    font-size:14px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1024px){

    .hero-container,
    .story,
    .value-container{
        grid-template-columns:1fr;
    }

    .hero-container{
        text-align:center;
    }

    .about-hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
        margin-top:40px;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .nav-menu{
        display:none;
    }

    main{
        padding-top:76px;
    }

    .logo-box img{
        width:48px;
        height:48px;
    }

    .logo{
        font-size:20px;
    }

    .about-hero{
        padding:80px 20px 70px;
    }

    .about-hero h1{
        font-size:42px;
    }

    .section-title h2,
    .cta h2,
    .value-container h2{
        font-size:34px;
    }

    .story-box h2,
    .highlight h2{
        font-size:32px;
    }

    .stats{
        grid-template-columns:1fr;
    }

    .hero-card,
    .story-box,
    .highlight,
    .card{
        padding:28px;
    }

    .section{
        padding:75px 20px;
    }
}

@media(max-width:600px){

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .market-point{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .btn,
    .btn-outline{
        width:100%;
    }

    .about-hero h1{
        font-size:36px;
    }

    .about-hero p{
        font-size:16px;
    }

    .cta{
        padding:55px 20px;
    }
}

/* MOBILE MENU */

.menu-btn{
    display:none;
    width:46px;
    height:46px;
    border-radius:12px;
    background:#eff6ff;
    color:#2563eb;
    font-size:24px;
    font-weight:700;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.menu-btn:hover{
    background:#2563eb;
    color:white;
}

.mobile-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:white;
    border-top:1px solid #e2e8f0;
    box-shadow:0 20px 40px rgba(15,23,42,0.08);

    display:flex;
    flex-direction:column;

    max-height:0;
    overflow:hidden;

    transition:.4s ease;
}

.mobile-menu.active{
    max-height:400px;
    padding:10px 0;
}

.mobile-menu a{
    padding:16px 24px;
    color:#334155;
    font-weight:600;
    border-bottom:1px solid #f1f5f9;
    transition:.3s;
}

.mobile-menu a:hover{
    background:#eff6ff;
    color:#2563eb;
    padding-left:32px;
}