body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ecfdf5, #ffffff, #d1fae5);
}

/* HEADER */

.navbar {
    background: white;
    padding: 16px 0;
}

.navbar-brand img {
    width: 150px;
}

.navbar-nav {
    gap: 32px;
    padding-right: 20px;
}

.nav-item a {
    font-weight: 500;
    transition: color .3s ease;
}

.nav-item a:hover {
    color: #059669;
}

/* HERO */

.hero {
    padding: 140px 0 100px 0;
}

.hero-img {
    width: 550px;
}

/* BADGE */

.badge-trial {
    display: inline-block;
    background: #d1fae5;
    color: #059669;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

/* HERO TITLE */

.hero h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 18px;
}

/* DESCRIPTION */

.hero p {
    color: #6c757d;
    font-size: 18px;
    margin-top: 20px;
}

/* BUTTON */

.btn-emerald {
    background: #10b981;
    color: white;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-emerald:hover {
    background: #059669;
    color: white;
}

.btn-demo {
    border: 1px solid #10b981;
    color: #10b981;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-demo:hover {
    background: #10b981;
    color: white;
}

.features {
    padding: 100px 0;
    background: #f9fafb;
}

/* CARD */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

/* HOVER EFFECT */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* WRAPPER GAMBAR */
.feature-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* GAMBAR FITUR */
.feature-img img {
    width: 260px;
    max-width: 100%;
    height: auto;
}

/* JUDUL */
.feature-card h5 {
    font-size: 18px;
}

/* DESKRIPSI */
.feature-card p {
    font-size: 15px;
    line-height: 1.6;
}

.why-deskita {
    padding: 100px 0;
    background: #f9fafb;
}

.section-label {
    color: #059669;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
}

.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: white;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    transition: all .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    color: #6c757d;
    margin: 0;
}

.why-icon {
    width: 52px;
    height: 52px;
    background: #d1fae5;
    color: #059669;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 20px;
}

.pricing-section {
    padding: 100px 0;
    background: #f9fafb;
}

.pricing-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all .3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.price {
    font-weight: 700;
    margin-top: 10px;
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: #6c757d;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    margin-bottom: 10px;
    color: #374151;
}

.recommended {
    border: 2px solid #10b981;
}

.badge-recommended {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
}

/* CTA */

.cta-section {
    background: #008e7e;
    padding: 90px 0;
    color: white;
}

.cta-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-desc {
    max-width: 600px;
    margin: auto;
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background: #ffffff;
    color: #059669;
    font-weight: 500;
    padding: 10px;
}

.btn-light:hover {
    color: #059669;
}

.btn-outline-light {
    font-weight: 500;
    padding: 10px;
}

.btn-outline-light:hover {
    color: #059669;
}

.cta-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}


/* FOOTER */

.footer {
    padding: 25px 0;
    background: #111827;
    color: #9ca3af;
}

/* logo */
.footer-logo {
    height: 60px;
}

/* menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-menu a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color .3s ease;
}

.footer-menu a:hover {
    color: #059669;
}

/* copyright */
.footer-copy {
    margin: 0;
    font-size: 14px;
    color: #9ca3af;
}