.g-brand {
    background: linear-gradient(135deg, #304AA6 0%, #253a82 100%);
}

.g-light {
    background: linear-gradient(135deg, #eef1fb 0%, #dde3f7 100%);
}

.g-subtle {
    background: linear-gradient(180deg, #f7f8fe 0%, #ffffff 100%);
}

.g-text {
    background: linear-gradient(135deg, #304AA6, #5B73C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.g-section {
    background: linear-gradient(180deg, #eef1fb 0%, #ffffff 100%);
}

/* Card */
.card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 20px 48px rgba(48, 74, 166, 0.07), 0 6px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform .28s ease, box-shadow .28s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 32px 64px rgba(48, 74, 166, 0.10), 0 10px 24px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.card-flat {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 20px 48px rgba(48, 74, 166, 0.07), 0 6px 16px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    height: 48px;
    padding: 0 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: opacity .18s, transform .18s;
    font-family: inherit;
}

.btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #304AA6 0%, #253a82 100%);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(48, 74, 166, 0.25);
    color: #304AA6;
}

.btn-outline:hover {
    background: #eef1fb;
    border-color: #304AA6;
}

.btn-wa {
    background: #25D366;
    color: #fff;
}

.btn-sm {
    height: 40px;
    padding: 0 20px;
    font-size: 13px;
}

/* Label */
.lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #304AA6;
}

/* Chip */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    background: #eef1fb;
    color: #304AA6;
}

.chip-dark {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

/* Input */
.inp {
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    padding: 0 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    width: 100%;
    outline: none;
    transition: border-color .18s, box-shadow .18s;
    background: #fff;
}

.inp:focus {
    border-color: #304AA6;
    box-shadow: 0 0 0 3px rgba(48, 74, 166, .09);
}

/* Marquee */
.mq-wrap {
    overflow: hidden;
}

.mq-inner {
    display: flex;
    width: max-content;
    animation: mq 30s linear infinite;
}

@keyframes mq {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* FAQ */
details summary {
    cursor: pointer;
    list-style: none;
}

details summary::-webkit-details-marker {
    display: none;
}

.chev {
    transition: transform .22s;
}

details[open] .chev {
    transform: rotate(180deg);
}

/* Scroll fade */
.fi {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

.fi.on {
    opacity: 1;
    transform: none;
}

/* Divider */
.div {
    border: none;
    border-top: 1px solid rgba(48, 74, 166, 0.08);
}

/* Striped table */
.trow:nth-child(even) {
    background: #f7f8fe;
}

/* Rate btn */
.rate-on {
    background: #eef1fb !important;
    border-color: #304AA6 !important;
    color: #304AA6 !important;
    font-weight: 600;
}