*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: century gothic, sans-serif;
}

body {
    width:100%;
    min-height:100vh;
    overflow:hidden;
    position:relative;
    background: url('../images/background.png') center/cover no-repeat;
}

/* CONTAINER */
.container {
    width:100%;
    min-height:100vh;
    padding:25px 50px;
    position:relative;
    z-index:2;
}

/* LOGO */
.logo-box {
    width:240px;
    padding:12px 18px;
    display:flex;
    align-items:center;
    gap:15px;
}

/* IMG */
.logo-box img {
    width:450px;
    height:100px;
    object-fit:cover;
}

/* HERO */
.hero {
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    margin-top:20px;
    text-align:center;
}

/* BADGE */
.badge {
    padding:12px 25px;
    border-radius:50px;
    background:#eaf1ff;
    color:#2563eb;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:25px;
    font-size:15px;
}

/* TITLE */
.hero h1 {
    font-family: Arial, sans-serif;
    font-size:64px;
    font-weight:700;
    line-height:1.1;
    color:#071437;
    max-width:1100px;
}

.hero h1 span {
    color:#2563eb;
}

.feature-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: #0f172a;
}
.feature-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

/* DESC */
.desc {
    margin-top:18px;
    max-width:800px;
    font-size:22px;
    line-height:1.7;
    color:#4b5b7a;
}

/* FEATURE */
.feature-wrapper {
    width:100%;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;
}

/* CARD */
.feature-card {
    width:240px;
    background:white;
    border-radius:28px;
    padding:22px;
    text-align:left;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    transition:0.3s;
}

.feature-card:hover {
    transform:translateY(-8px);
}

/* ICON */
.icon {
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    margin:0 auto 18px;
}

.blue {
    background:#e8f0ff;
    color:#2563eb;
}

/* ACTION TEXT */
.action-text {
    margin-top:28px;
    font-size:22px;
    color:#4b5b7a;
}

/* BUTTON */
.button-group {
    display:flex;
    gap:20px;
    margin-top:20px;
}

/* BTN */
.btn {
    padding:15px 35px;
    border-radius:18px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex:1;
    min-width:0;
    transition:0.3s;
}

.btn i {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:24px;
    height:24px;
}

/* PRIMARY */
.primary {
    background:linear-gradient(135deg, #2563eb, #005eff);
    color:white;
    box-shadow:0 12px 25px rgba(37,99,235,0.3);
}

/* SECONDARY */
.secondary {
    background:white;
    color:#2563eb;
    border:1px solid #dbeafe;
}

/* HOVER */
.btn:hover {
    transform:translateY(-4px);
}

/* RESPONSIVE */
@media(max-width:1200px) {
    body {
        overflow:auto;
    }

    .hero h1 {
        font-size:50px;
    }

    .desc {
        font-size:18px;
    }
}

@media(max-width:768px) {
    body {
        overflow:auto;
    }

    .container {
        padding:25px 20px;
    }

    .logo-box {
        width:100%;
    }

    .hero h1 {
        font-size:38px;
    }

    .desc {
        font-size:16px;
    }

    .button-group {
        flex-direction:column;
        width:100%;
    }

    .btn {
        width:100%;
        justify-content:center;
    }
}
