* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f0f2f5;
    display: flex;
    justify-content: center;
    padding: 40px 16px;
    min-height: 100vh;
}
.container {
    width: 100%;
    max-width: 480px;
}
.header {
    background: #0D2137;
    border-radius: 12px 12px 0 0;
    padding: 24px 24px 20px;
}
.header-eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.header h1 {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 4px;
}

.header-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 20px 24px;
}
.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.field {
    margin-bottom: 12px;
}
label {
    font-size: 11px;
    color: #888;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
select {
    width: 100%;
    font-size: 13px;
    padding: 8px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    background: #ffffff;
    color: #1a1a1a;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}
select:focus {
    outline: none;
    border-color: #0D2137;
}
.divider {
    border-top: 1px solid #ebebeb;
    padding-top: 14px;
    margin-bottom: 14px;
}
.condition-title {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.condition-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.condition-row label {
    font-size: 13px;
    color: #1a1a1a;
    letter-spacing: 0;
    margin-bottom: 0;
}
.condition-row select {
    width: 90px;
}
button {
    width: 100%;
    padding: 11px;
    background: #0D2137;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 2px;
}
button:hover {
    background: #1a3a5c;
}
.result-box {
    margin-top: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}
.result-label {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.result-sub {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}
#result {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}
.contact-form {
    display: none;
    margin-top: 14px;
}