/* ==========================================================
   YRITYSAPURI 2.0
   style.css
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:#0B1F3A;

    background:#ffffff;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

/* ==========================================================
   HEADER
========================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#ffffff;

    z-index:999;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:18px;

}

.logo-icon{

    width:62px;

    height:62px;

    border-radius:18px;

    background:#12B5CB;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    font-weight:700;

}

.logo-text h2{

    font-size:40px;

    line-height:1;

    color:#0B1F3A;

    font-weight:800;

    letter-spacing:-1px;

}

.logo-text span{

    display:block;

    margin-top:8px;

    color:#12B5CB;

    font-size:16px;

    font-weight:600;

}

nav ul{

    list-style:none;

    display:flex;

    gap:42px;

}

nav a{

    color:#0B1F3A;

    font-weight:600;

    transition:.25s;

}

nav a:hover{

    color:#12B5CB;

}

.button-primary{

    background:#12B5CB;

    color:white;

    padding:16px 34px;

    border-radius:999px;

    font-weight:700;

    transition:.25s;

    display:inline-block;

}

.button-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(18,181,203,.30);

}

.button-secondary{

    display:inline-block;

    padding:16px 34px;

    border-radius:999px;

    border:2px solid white;

    color:white;

    font-weight:700;

    transition:.25s;

}

.button-secondary:hover{

    background:white;

    color:#0B1F3A;

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    margin-top:108px;

    min-height:720px;

    background:
    linear-gradient(rgba(10,25,47,.82),
    rgba(10,25,47,.82)),
    url("hero.jpg");

    background-size:cover;

    background-position:center;

    position:relative;

    overflow:hidden;

}

.hero-grid{

    min-height:720px;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

}

.hero-content{

    color:white;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    padding:12px 22px;

    border-radius:999px;

    font-size:14px;

    margin-bottom:28px;

}

.hero h1{

    font-size:66px;

    line-height:1.08;

    margin-bottom:28px;

    font-weight:800;

}

.hero p{

    font-size:22px;

    max-width:620px;

    opacity:.95;

}

.hero-buttons{

    margin-top:45px;

    display:flex;

    gap:22px;

}

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:560px;

    border-radius:28px;

    box-shadow:0 30px 70px rgba(0,0,0,.30);

}