body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #1a1a2e;
    margin: 0;
}

.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;
}

.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);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    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-wa {
    background: #25D366;
    color: #fff;
}

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

.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);
}

textarea.inp {
    height: auto;
    padding: 14px 16px;
    resize: none;
    line-height: 1.6;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social icon hover */
.soc {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef1fb;
    color: #304AA6;
    font-size: 16px;
    text-decoration: none;
    transition: background .18s, color .18s, transform .18s;
}

.soc:hover {
    background: #304AA6;
    color: #fff;
    transform: translateY(-2px);
}

/* Fade in */
.fi {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

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

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