body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#333;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(0,0,0,0.05);
    padding:20px 0;
}

.navbar-brand{
    font-weight:700;
    letter-spacing:3px;
    color:#111;
    font-size:1.1rem;
}

/* HERO */

.hero{
    padding:140px 20px 120px;
    text-align:center;
    position:relative;

    background:
    radial-gradient(circle at top,
    rgba(0,150,180,0.08),
    transparent 45%);
}

.monito{
    max-width:260px;
    margin-bottom:40px;
    opacity:0.96;

    filter:drop-shadow(0 10px 25px rgba(0,0,0,0.10));

    transition:all 0.4s ease;
}

.monito:hover{
    transform:translateY(-6px) scale(1.02);
}

/* TITLES */

h1{
    font-size:4.5rem;
    font-weight:700;
    letter-spacing:4px;
    margin-bottom:18px;
    color:#111;
}

.claim{
    font-size:1.4rem;
    color:#0090a8;
    margin-bottom:30px;
    font-weight:400;
}

.subtitle{
    font-size:1.12rem;
    color:#666;
    max-width:760px;
    margin:0 auto 35px;
    line-height:1.95;
}

/* LINE */

.line{
    width:90px;
    height:2px;
    background:#0090a8;
    opacity:0.35;
    margin:40px auto;
}

/* SECTIONS */

.info-section{
    padding:110px 20px;
    background:#fafafa;
}

.info-title{
    text-align:center;
    margin-bottom:70px;
}

.info-title h2{
    font-weight:600;
    color:#111;
}

/* DIVIDER */

.divider{
    width:70px;
    height:2px;
    background:#0090a8;
    margin:30px auto;
    opacity:0.3;
}

/* ACCORDION */

.accordion-button{
    background:#ffffff;
    font-weight:500;
    font-size:1.1rem;
    color:#222;
    border:none;
}

.accordion-button:not(.collapsed){
    background:#ffffff;
    color:#0090a8;
    box-shadow:none;
}

.accordion-button:focus{
    box-shadow:none;
    border:none;
}

.accordion-item{
    border:none;
    transition:all 0.3s ease;
    overflow:hidden;
}

.accordion-item:hover{
    transform:translateY(-2px);
}

.accordion-body{
    color:#666;
    line-height:1.9;
    font-size:1rem;
}

/* CARDS */

.card-box{
    background:#fff;
    border-radius:22px;
    padding:40px 28px;
    height:100%;

    box-shadow:
    0 10px 35px rgba(0,0,0,0.04);

    transition:all 0.35s ease;
}

.card-box:hover{
    transform:translateY(-6px);
}

.card-box h5{
    margin-bottom:18px;
    font-weight:600;
    color:#111;
}

.card-box p{
    color:#666;
    line-height:1.8;
}

/* QUOTE */

.quote-section{
    padding:140px 20px;
    text-align:center;
    background:#ffffff;
}

.quote-section h2{
    font-size:2.4rem;
    font-weight:300;
    line-height:1.8;
    color:#333;
}

/* FORM */

.form-control{
    border-radius:18px;
    border:1px solid rgba(0,0,0,0.08);
    padding:18px;
    font-size:1rem;
}

.form-control:focus{
    box-shadow:none;
    border-color:#0090a8;
}

/* BUTTON */

.btn-dark{
    background:#111;
    border:none;
    padding:16px 42px;
    font-weight:500;
    transition:all 0.3s ease;
}

.btn-dark:hover{
    background:#0090a8;
}

/* FOOTER */

.footer{
    border-top:1px solid rgba(0,0,0,0.05);
    padding:40px;
    text-align:center;
    color:#888;
    font-size:0.95rem;
    background:#fff;
}

/* MOBILE */

@media(max-width:768px){

    h1{
        font-size:3rem;
        letter-spacing:2px;
    }

    .hero{
        padding:100px 20px 90px;
    }

    .quote-section h2{
        font-size:1.8rem;
    }

}

.nav-link-custom{
    text-decoration:none;
    color:#666;
    font-size:0.95rem;
    transition:all 0.3s ease;
}

.nav-link-custom:hover{
    color:#0090a8;
}



.navbar-logo{
    width:42px;
    height:auto;
    object-fit:contain;
}


.logo-infolin{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-infolin span{
    font-size:1.3rem;
    font-weight:700;
    letter-spacing:3px;
    color:#0f172a;
}

.logo-icon{
    position:relative;
    width:46px;
    height:46px;
}

.wing{
    position:absolute;
    bottom:0;
    width:20px;
    height:28px;
    border-radius:4px;

    background:linear-gradient(
    135deg,
    #18c5c9,
    #2979ff);
}

.left{
    left:0;
    transform:skewY(20deg);
}

.right{
    right:0;
    transform:skewY(-20deg);
}

.node{
    position:absolute;
    border-radius:50%;

    background:#1da1f2;
}

.center{
    width:8px;
    height:8px;

    top:8px;
    left:19px;
}

.left-node{
    width:10px;
    height:10px;

    top:0;
    left:3px;
}

.right-node{
    width:10px;
    height:10px;

    top:0;
    right:3px;
}


.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler-icon{
    width:1.4rem;
    height:1.4rem;
}

@media(max-width:991px){

    .navbar-collapse{

        background:#ffffff;

        padding:25px;
        margin-top:20px;

        border-radius:20px;

        box-shadow:
        0 10px 30px rgba(0,0,0,0.08);
    }

    .nav-link-custom{
        padding:10px 0;
    }

}