* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #ffffff;
    color: #0f172a;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
}

.logo h2 {
    color: #1d4ed8;
}

.logo small {
    color: #64748b;
    font-size: 0.8rem;
}

.menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
}

.menu a:hover {
    color: #1d4ed8;
}

.btn-signup {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    gap: 60px;
}

.hero-text {
    max-width: 480px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero-text span {
    color: #1d4ed8;
}

.hero-text p {
    margin: 25px 0;
    color: #64748b;
    line-height: 1.7;
}

.btn-start {
    display: inline-block;
    background: linear-gradient(135deg, #1d4ed8, #1d4ed8);
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    color: #0f172a;
    transition: 0.3s;
}

.btn-start:hover {
    transform: scale(1.05);
}

/* HERO IMAGE */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 420px;
    border-radius: 40px;
}

/* BADGE */
.badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1d4ed8;
    color: white;
    padding: 12px 26px;
    border-radius: 30px;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* PAYMENT */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f7f9fc;
    color: #1f2937;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: #fff;
}

.logo h2 {
    color: #2563eb;
}

.logo span {
    font-size: 13px;
    color: #6b7280;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #2563eb;
}

/* PAYMENT */
.payment {
    padding: 80px;
    text-align: center;
}

.payment h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.desc {
    color: #6b7280;
    margin-bottom: 50px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.payment-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
    text-align: left;
}

.payment-card:hover {
    transform: translateY(-10px);
}

.payment-card h3 {
    color: #2563eb;
    margin-bottom: 15px;
}

.payment-card span {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.payment-card small {
    color: #6b7280;
}

.payment-card hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

.payment-card img {
    width: 140px;
    margin-top: 15px;
}

/* INFO */
.payment-info {
    margin: 60px auto;
    max-width: 700px;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.payment-info h3 {
    color: #2563eb;
    margin-bottom: 15px;
}

.payment-info ul {
    padding-left: 20px;
}

.payment-info li {
    margin-bottom: 10px;
    color: #374151;
}

/* BUTTON */
.btn-confirm {
    display: inline-block;
    padding: 15px 40px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.btn-confirm:hover {
    background: #1e40af;
}

/* FOOTER */
footer {
    margin-top: 80px;
    padding: 20px;
    background: #fff;
    color: #6b7280;
}

/* TESTIMONI */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f7f9fc;
    color: #1f2937;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: #fff;
}

.logo h2 {
    color: #2563eb;
}

.logo span {
    font-size: 13px;
    color: #6b7280;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #2563eb;
}

/* TESTIMONI */
.testimoni {
    padding: 80px;
    text-align: center;
}

.testimoni h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.desc {
    color: #6b7280;
    margin-bottom: 60px;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.testi-card:hover {
    transform: translateY(-10px);
}

.testi-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.testi-card h3 {
    margin-bottom: 5px;
}

.testi-card span {
    color: #2563eb;
    font-size: 14px;
}

.testi-card p {
    margin-top: 15px;
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

/* FOOTER */
footer {
    margin-top: 80px;
    padding: 20px;
    background: #fff;
    color: #6b7280;
}
