.jetly-notify-admin-home {
    max-width: 1100px;
    margin: 30px auto;
}
.jetly-notify-hero {
    display: flex;
    align-items: center;
    background: white;
    position: relative;
    border-radius: 16px;
    padding: 40px 30px 30px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    overflow: hidden;
}
.jetly-notify-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="none"/><circle cx="60" cy="60" r="40" fill="%2325d36622"/><circle cx="200" cy="100" r="30" fill="%23075e5422"/><circle cx="400" cy="80" r="60" fill="%2325d36611"/></svg>');
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
}
.jetly-notify-hero .hero-icon, .jetly-notify-hero .hero-content {
    position: relative;
    z-index: 1;
}
.jetly-notify-hero .hero-icon {
    font-size: 64px;
    margin-right: 30px;
    display: flex;
    align-items: center;
}
.jetly-notify-hero .dashicons-whatsapp {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: green;
}
.jetly-notify-hero .icon {
    font-size: 64px;
    width: 64px;
    height: 64px;
    color: green;
}
.jetly-notify-hero .hero-content h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}
.jetly-notify-hero .hero-tagline {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}
.jetly-notify-get-started {
    background: #fff3cd;
    border-left: 5px solid #ffe066;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 30px;
}
.jetly-notify-get-started h2 {
    margin-top: 0;
    color: #856404;
}
.get-started-list {
    margin: 0 0 10px 0;
    padding-left: 20px;
}
.get-started-list li {
    margin-bottom: 10px;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.get-started-list .dashicons {
    color: #ffe066;
    font-size: 20px;
    width: 20px;
    height: 20px;
}
.get-started-tip {
    margin-top: 10px;
    color: #856404;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.get-started-tip .dashicons {
    color: #856404;
    font-size: 18px;
}
.jetly-notify-modules {
    display: flex;
    gap: 30px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.module-card {
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 340px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    padding: 32px 24px 28px 24px;
    text-align: left;
    text-decoration: none;
    color: #1d2327;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
}
.module-card:hover {
    box-shadow: 0 4px 16px rgba(37,211,102,0.13);
    transform: translateY(-2px) scale(1.02);
    border-color: #25d36633;
}
.module-card .dashicons {
    font-size: 36px;
    margin-bottom: 18px;
    color: #25d366;
    width: 36px;
    height: 36px;
}
.module-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 600;
}
.module-card p {
    margin: 0;
    color: #555;
    font-size: 1.02rem;
    opacity: 0.92;
}
@media (max-width: 900px) {
    .jetly-notify-modules {
        flex-direction: column;
        gap: 18px;
    }
    .module-card {
        max-width: 100%;
    }
    .jetly-notify-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 18px 18px 18px;
    }
    .jetly-notify-hero .hero-icon {
        margin-bottom: 18px;
        margin-right: 0;
    }
}