/* ===========================================================
   GRĂTIEȘTI LOGISTICS HUB
   Main Styles
=========================================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:#1f2937;
    background:#ffffff;
    line-height:1.7;

}

img{

    display:block;
    width:100%;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1180px,92%);
    margin:auto;

}


/* ==========================
   Typography
========================== */

h1{

    font-size:72px;
    line-height:1.05;
    font-weight:800;
    color:#fff;

}

h2{

    font-size:42px;
    margin-bottom:25px;
    font-weight:700;
    color:#111827;

}

h3{

    font-size:22px;
    margin-bottom:12px;

}

p{

    color:#5b6470;
    margin-bottom:20px;

}

.section-title{

    display:inline-block;

    color:#0b6efd;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}


/* ==========================
   Header
========================== */

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(15,23,42,.85);

    backdrop-filter:blur(14px);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo{

    color:white;

    font-weight:800;

    line-height:1.1;

}

.logo span{

    display:block;

    font-size:26px;

    letter-spacing:1px;

}

.logo small{

    display:block;

    color:#9fb4d3;

    font-size:12px;

    letter-spacing:3px;

}

nav{

    display:flex;

    gap:34px;

}

nav a{

    color:white;

    font-size:15px;

    transition:.25s;

}

nav a:hover{

    color:#66b3ff;

}


/* ==========================
   Buttons
========================== */

.btn-primary,
.btn-secondary,
.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:#0b6efd;

    color:white;

}

.btn-primary:hover{

    background:#0958d8;

}

.btn-secondary{

    border:2px solid white;

    color:white;

}

.btn-secondary:hover{

    background:white;

    color:#111827;

}

.btn-outline{

    border:1px solid rgba(255,255,255,.35);

    color:white;

}

.btn-outline:hover{

    background:white;

    color:#111827;

}


/* ==========================
   Hero
========================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

            rgba(5,15,28,.75),

            rgba(5,15,28,.55)

    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:720px;

}

.badge{

    display:inline-block;

    padding:8px 16px;

    border-radius:40px;

    background:rgba(255,255,255,.15);

    color:white;

    margin-bottom:25px;

    font-size:13px;

    letter-spacing:1px;

}

.hero p{

    color:#d6dbe2;

    font-size:20px;

    max-width:620px;

    margin:30px 0;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}


/* ==========================
   Stats
========================== */

.stats{

    background:#ffffff;

    padding:90px 0;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat{

    background:#f8fafc;

    border-radius:14px;

    text-align:center;

    padding:45px 25px;

    transition:.3s;

}

.stat:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.stat h2{

    margin:0;

    font-size:42px;

    color:#0b6efd;

}

.stat span{

    color:#6b7280;

}

.highlights{

    background:#f8fafc;

}

.highlight-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.highlight-card{

    background:white;

    border-radius:16px;

    padding:40px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

    transition:.3s;

}

.highlight-card:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.highlight-card h3{

    color:#0b6efd;

    font-size:36px;

    margin-bottom:10px;

}

.highlight-card p{

    margin:0;

}


/* ===========================================================
   Technical Specifications
=========================================================== */

.specifications{

    background:white;

}

.spec-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:60px;

}

.spec-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 26px;

    border-radius:12px;

    background:#f8fafc;

    border:1px solid #e7edf3;

    transition:.25s;

}

.spec-item:hover{

    background:white;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.spec-item span{

    color:#64748b;

    font-size:16px;

}

.spec-item strong{

    color:#111827;

    font-size:18px;

    font-weight:700;

}

/* ===========================================================
   DEVELOPMENT STATUS
=========================================================== */

.timeline{

    background:#ffffff;

}

.timeline-wrapper{

    max-width:1100px;
    margin:70px auto 0;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    position:relative;

}

.timeline-wrapper::before{

    content:"";

    position:absolute;

    top:24px;
    left:4%;
    right:4%;

    height:3px;

    background:#dbe4ee;

    z-index:1;

}

.timeline-step{

    position:relative;

    z-index:2;

    width:120px;

    text-align:center;

}

.timeline-dot{

    width:48px;
    height:48px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#dbe4ee;

    display:flex;

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

    color:white;

    font-weight:700;

}

.timeline-step.completed .timeline-dot{

    background:#0b6efd;

}

.timeline-step.active .timeline-dot{

    background:#22c55e;

}

.timeline-step h4{

    font-size:16px;

    margin-bottom:8px;

}

.timeline-step p{

    font-size:14px;

    margin:0;

    color:#64748b;

}



/* ===========================================================
   REGISTER INTEREST
=========================================================== */

.interest{

    background:#f8fafc;

}

.interest-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.interest-card{

    background:white;

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.3s;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.interest-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.interest-icon{

    font-size:48px;

    margin-bottom:18px;

}

.interest-card h3{

    margin-bottom:16px;

}

.interest-card p{

    min-height:90px;

    color:#64748b;

}



/* ===========================================================
   REGISTRATION FORM
=========================================================== */

.registration{

    background:#0f172a;

}

.registration .section-title{

    color:#66b3ff;

}

.registration h2{

    color:white;

}

.registration p{

    color:#cbd5e1;

}

.registration form{

    max-width:760px;

    margin:60px auto 0;

    display:grid;

    gap:22px;

}

.registration input,
.registration select,
.registration textarea{

    width:100%;

    padding:18px 22px;

    border-radius:10px;

    border:none;

    background:white;

    font-size:16px;

    font-family:inherit;

}

.registration textarea{

    min-height:170px;

    resize:vertical;

}

.registration button{

    border:none;

    cursor:pointer;

    padding:18px;

    font-size:17px;

}

.registration small{

    display:block;

    text-align:center;

    color:#94a3b8;

    line-height:1.7;

    margin-top:15px;

}



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

.final-note{

    text-align:center;

    margin-top:35px;

    color:#94a3b8;

}



/* ===========================================================
   MOBILE
=========================================================== */

@media(max-width:1000px){

    .interest-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .timeline-wrapper{

        flex-wrap:wrap;

        gap:40px;

        justify-content:center;

    }

    .timeline-wrapper::before{

        display:none;

    }

}



@media(max-width:768px){

    .interest-grid{

        grid-template-columns:1fr;

    }

    .timeline-step{

        width:100%;

    }

    .registration form{

        width:100%;

    }

}

/* ===========================================================
   CONTENT SECTIONS
=========================================================== */

section{

    padding:110px 0;

}

.about{

    background:#ffffff;

}

.features{

    background:#f8fafc;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.about-image img{

    display:block;

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.45s;

}

.about-image:hover img{

    transform:scale(1.04);

}

.about-text h2{

    max-width:560px;

}

.about-text p{

    font-size:17px;

    line-height:1.8;

}

.about-text ul{

    margin-top:30px;

}

.about-text li{

    padding:14px 0;

    border-bottom:1px solid #e8edf3;

    font-weight:500;

    color:#374151;

}

.about-text li:last-child{

    border-bottom:none;

}


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

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.section-header h2{

    margin-bottom:18px;

}

.section-header p{

    font-size:18px;

}


/* ===========================================================
   FEATURE IMAGE
=========================================================== */

.feature-image{

    border-radius:18px;

    overflow:hidden;

    margin-bottom:55px;

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.feature-image img{

    width:100%;

    display:block;

}


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

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.card{

    background:white;

    border-radius:16px;

    padding:38px;

    transition:.30s;

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

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.card h3{

    color:#0b6efd;

    margin-bottom:18px;

    font-size:22px;

}

.card p{

    margin:0;

    font-size:16px;

}


/* ===========================================================
   IMAGE STYLING
=========================================================== */

.about-image,
.feature-image{

    position:relative;

}

.about-image::after,
.feature-image::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.12);

    pointer-events:none;

}


/* ===========================================================
   LISTS
=========================================================== */

.about-text li{

    position:relative;

    padding-left:34px;

}

.about-text li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:13px;

    color:#0b6efd;

    font-weight:700;

}


/* ===========================================================
   SPACING
=========================================================== */

.about + .features{

    border-top:1px solid #edf2f7;

}

.features + .about{

    border-top:1px solid #edf2f7;

}


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

.features{

    position:relative;

}

.features::before{

    content:"";

    position:absolute;

    top:0;
    left:0;
    right:0;

    height:1px;

    background:#e9edf2;

}


/* ===========================================================
   SMALL ANIMATIONS
=========================================================== */

.about-image,
.feature-image,
.card{

    transition:all .35s ease;

}

.about-image:hover{

    box-shadow:0 35px 70px rgba(0,0,0,.18);

}

.feature-image:hover{

    box-shadow:0 35px 70px rgba(0,0,0,.18);

}


/* ===========================================================
   TEXT WIDTH
=========================================================== */

.about-text{

    max-width:560px;

}

.about-text p:last-of-type{

    margin-bottom:10px;

}

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

.contact{

    background:#0f172a;

    color:white;

    text-align:center;

}

.contact h2{

    color:white;

    font-size:46px;

    margin-bottom:25px;

}

.contact p{

    color:#cbd5e1;

    max-width:760px;

    margin:0 auto 45px;

    font-size:18px;

}

.contact .hero-buttons{

    justify-content:center;

}


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

footer{

    background:#08101f;

    color:#94a3b8;

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    margin-bottom:50px;

}

.footer-grid h3{

    color:white;

    font-size:26px;

    margin-bottom:18px;

}

.footer-grid h4{

    color:white;

    margin-bottom:18px;

}

.footer-grid p{

    color:#94a3b8;

    line-height:1.8;

    margin:0;

}

footer hr{

    border:none;

    height:1px;

    background:rgba(255,255,255,.08);

    margin:30px 0;

}

.copyright{

    text-align:center;

    color:#64748b;

    font-size:14px;

}


/* ===========================================================
   BUTTON EFFECTS
=========================================================== */

.btn-primary,
.btn-secondary,
.btn-outline{

    transition:all .30s ease;

}

.btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(11,110,253,.35);

}

.btn-secondary:hover{

    transform:translateY(-2px);

}

.btn-outline:hover{

    transform:translateY(-2px);

}


/* ===========================================================
   LINKS
=========================================================== */

nav a{

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:#4ea5ff;

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}


/* ===========================================================
   MOBILE
=========================================================== */

@media(max-width:1100px){

    h1{

        font-size:58px;

    }

    h2{

        font-size:36px;

    }

    .about-grid{

        gap:50px;

    }

}


@media(max-width:900px){

    nav{

        display:none;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .cards{

        grid-template-columns:1fr;

    }

    .about-grid{

        grid-template-columns:1fr;

    }

    .about-text{

        max-width:100%;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:35px;

    }

    .hero{

        text-align:center;

    }

    .hero-content{

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

}


@media(max-width:640px){

    h1{

        font-size:42px;

    }

    h2{

        font-size:30px;

    }

    .hero p{

        font-size:18px;

    }

    .navbar{

        height:70px;

    }

    .logo span{

        font-size:20px;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .stat{

        padding:35px 20px;

    }

    .contact h2{

        font-size:34px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn-primary,
    .btn-secondary{

        width:100%;

    }

}


/* ===========================================================
   LARGE SCREENS
=========================================================== */

@media(min-width:1400px){

    .container{

        max-width:1280px;

    }

}


/* ===========================================================
   SELECTION
=========================================================== */

::selection{

    background:#0b6efd;

    color:white;

}


/* ===========================================================
   SCROLLBAR
=========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:#0b6efd;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0958d8;

}

.success-message{

    margin-top:25px;

    background:#dcfce7;

    color:#166534;

    padding:18px 24px;

    border-radius:10px;

    text-align:center;

    font-weight:600;

}

.error-message{

    margin-top:25px;

    background:#fee2e2;

    color:#991b1b;

    padding:18px 24px;

    border-radius:10px;

    text-align:center;

    font-weight:600;

}