:root{
    --bg-main:#0f172a;
    --bg-dark:#020617;
    --bg-soft:#020617dd;

    --primary:#f97316;
    --secondary:#38bdf8;

    --text-main:#e5e7eb;
    --text-soft:#94a3b8;
    --white:#ffffff;
}


/* ================= RESET ================= */

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

body{
    font-family:Inter,system-ui,sans-serif;
    background:var(--bg-main);
    color:var(--text-main);
    line-height:1.5;
}


/* ================= HEADER ================= */

header{
    background:linear-gradient(135deg,#020617,#020617dd);
    padding:12px 16px;
    position:relative;
    z-index:2000;
}

.header-bar{
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
}


/* ================= MENU ================= */

.menu-wrap{
    position:relative;
    z-index:6000;
}

.menu-btn{
    background:linear-gradient(135deg,#020617,#1e293b);

    border:none;
    border-radius:10px;

    width:46px;
    height:46px;

    color:white;
    font-size:22px;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #334155;

    box-shadow:
        0 0 12px #f9731660,
        0 0 22px #38bdf860;

    transition:.2s ease;
}

.menu-btn:hover{
    filter:brightness(1.15);
    transform:translateY(-1px);
}

.menu-btn:active{
    transform:translateY(1px);
}

/* ================= PARTNERS ================= */

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

.partner-logo{
    max-width:140px;
    max-height:60px;

    width:auto;
    height:auto;

    margin:0 auto 16px;

    display:block;
    object-fit:contain;

    filter:brightness(0.95);
    transition:.2s ease;
}

.partner-logo:hover{
    filter:brightness(1.1);
    transform:scale(1.05);
}

.partner-card ul{
    margin:14px 0;
    padding-left:18px;
    text-align:left;
}

.partner-card li{
    margin-bottom:6px;
    color:var(--text-soft);
}
/* ================= DROPDOWN ================= */

.menu-dropdown{
    position:absolute;
    top:55px;
    left:0;

    width:240px;

    background:var(--bg-dark);
    border-radius:12px;

    box-shadow:0 12px 40px rgba(0,0,0,.75);

    overflow:hidden;

    opacity:0;
    pointer-events:none;
    transform:translateY(-10px) scale(.98);

    transition:
        opacity .2s ease,
        transform .2s ease;

    z-index:9000;
}

.menu-dropdown.open{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0) scale(1);
}

.menu-dropdown h4{
    padding:12px 16px;
    background:#020617;
    color:var(--secondary);
    font-size:.85rem;
}

.menu-dropdown a{
    display:block;
    padding:12px 16px;

    color:var(--text-main);
    text-decoration:none;
    font-weight:600;

    border-bottom:1px solid #1e293b;

    transition:.15s ease;
}

.menu-dropdown a:hover{
    background:#020617;
    color:var(--primary);
}

.menu-dropdown hr{
    border:none;
    height:1px;
    background:#1e293b;
    margin:6px 0;
}


/* ================= LOGO ================= */

.header-logo{
    text-align:center;
}

.header-logo img{
    max-width:200px;
    width:100%;
    height:auto;
}


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

.header-contact{
    display:flex;
    align-items:center;
    justify-content:flex-end;
}

.header-contact a{
    background:linear-gradient(135deg,#f97316,#fb923c);
    color:black;

    padding:7px 14px;
    border-radius:25px;

    font-size:.85rem;
    font-weight:700;

    text-decoration:none;

    border:1px solid #fb923c;

    box-shadow:0 0 15px #f9731680;

    transition:.2s ease;

    white-space:nowrap;
}

.header-contact a:hover{
    filter:brightness(1.1);
    transform:translateY(-1px);
}


/* ================= MAIN ================= */

main{
    max-width:1100px;
    margin:40px auto;
    padding:0 20px 60px;
}


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

.hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:40px;

    background:linear-gradient(135deg,#020617,#0f172a,#020617);

    padding:70px 20px 65px;

    border-radius:0 0 40px 40px;

    box-shadow:0 10px 30px rgba(0,0,0,.6);

    margin-bottom:40px;
}

.hero-text{
    max-width:600px;
}

.hero h1{
    font-size:clamp(2rem,5vw,3.2rem);
    font-weight:700;

    margin-bottom:15px;
}

.hero p{
    font-size:1.1rem;
    max-width:650px;
    line-height:1.6;
    color:var(--text-soft);
}

.hero-image img{
    width:100%;
    border-radius:20px;
}


/* MOBILE HERO */

@media(max-width:900px){

    .hero{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-text{
        margin:auto;
    }

    .hero-image{
        order:2;
    }

}


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

.card-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
    margin-top:25px;
}

@media(max-width:900px){
    .card-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .card-grid{
        grid-template-columns:1fr;
    }
}

.card{
    background:var(--bg-dark);

    border-radius:12px;
    padding:26px;

    box-shadow:0 6px 20px rgba(0,0,0,.5);

    border-top:4px solid var(--primary);

    display:flex;
    flex-direction:column;
    height:100%;
}

.card h3{
    color:var(--secondary);
    margin-bottom:12px;
}

.card p{
    color:var(--text-soft);
    line-height:1.6;
}


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

footer{
    background:#020617;
    color:var(--text-main);
    padding:35px 20px 25px;
}

.footer-layout{
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:25px;
}

.footer-logo img{
    max-width:70px;
    opacity:.9;
}

.footer-bottom{
    text-align:center;
    margin-top:25px;
    font-size:.85rem;
    color:#64748b;
}
/* ================= SECTION SPACING ================= */

.section {
  padding: 120px 24px;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Larger separation between sections */
.section + .section {
  margin-top: 60px;
}

/* ================= SECTION HEADERS ================= */

.section h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.2;
}

/* Give breathing room under intro text */
.section-text {
  font-size: 18px;
  color: #9fb0c3;
  margin-bottom: 60px;
  max-width: 700px;
}

/* ================= CARD GRID ================= */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* ================= VISUAL SEPARATION OPTION ================= */
/* Optional: subtle divider between sections */

.section:not(.hero):not(.cta)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #2563eb, transparent);
  opacity: 0.4;
}
/* ================= MOBILE FIX ================= */

@media(max-width:700px){

    header{
        padding:10px 12px;
    }

    .header-bar{
        grid-template-columns:46px 1fr auto;
        align-items:center;
        gap:8px;
    }

    .header-logo{
        display:flex;
        justify-content:center;
        align-items:center;
    }

    .header-logo img{
        max-width:140px;
        width:auto;
    }

    .header-contact{
        justify-content:flex-end;
    }

    /* FIX CTA BUTTON */
    .header-contact a{

        width:auto;
        height:auto;

        padding:6px 14px;

        border-radius:20px;

        font-size:0.75rem;

        white-space:nowrap;

        display:inline-flex;
        align-items:center;
        justify-content:center;
    }

    .footer-layout{
        grid-template-columns:1fr;
        text-align:center;
    }

}
