/* Hero */
.ice-hero {
    padding: 2.5rem 2.5rem 2rem;
    border-bottom: 1px solid #ede9f8;
    position: relative;
    background: #fff;
}
.ice-accent-bar {
    position: absolute;
    top: 0; right: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, #7F77DD 0%, #5DCAA5 100%);
    border-radius: 0 14px 0 0;
}
.ice-tag {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #aaa;
    font-weight: 500;
    margin: 0 0 .75rem;
}
.ice-heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2.2rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0 0 .6rem;
}
.ice-heading em {
    font-style: italic;
    color: #534AB7;
}
.ice-subheading {
    font-size: 15px;
    color: #666;
    font-weight: 300;
    max-width: 420px;
    line-height: 1.6;
    margin: 0;
}

/* Body layout */
.ice-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
}
@media (max-width: 720px) {
    .ice-body { grid-template-columns: 1fr; }
    .ice-info-col { border-top: 1px solid #ede9f8; border-left: none !important; }
}

/* Form column */
.ice-form-col {
    padding: 2rem 2.5rem;
}
.ice-form { display: flex; flex-direction: column; gap: 1rem; }

.ice-field { display: flex; flex-direction: column; gap: 5px; }
.ice-field label {
    font-size: 11.5px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #999;
    font-weight: 500;
}
.ice-req { color: #E24B4A; }

.ice-form input,
.ice-form select,
.ice-form textarea {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
    box-sizing: border-box;
}
.ice-form input:focus,
.ice-form select:focus,
.ice-form textarea:focus {
    border-color: #7F77DD;
    box-shadow: 0 0 0 3px rgba(127,119,221,.12);
    background: #fff;
}
.ice-form textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.ice-form select {
    appearance: none;
    -webkit-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 d='M2 4l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.ice-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 540px) {
    .ice-row { grid-template-columns: 1fr; }
}

/* Button */
.ice-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #5f2dee !important;
    color: #fff !important;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s, transform .1s;
    letter-spacing: .02em;
    margin-top: .25rem;
}
.ice-btn:hover { background: #3C3489; }
.ice-btn:active { transform: scale(.99); }
.ice-btn:disabled { background: #bbb; cursor: not-allowed; transform: none; }

/* Spinner */
.ice-spinner {
    display: none;
    width: 15px; height: 15px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ice-spin .7s linear infinite;
    flex-shrink: 0;
}
.ice-btn.is-loading .ice-spinner { display: block; }
.ice-btn.is-loading .ice-btn-label { opacity: .7; }
@keyframes ice-spin { to { transform: rotate(360deg); } }

/* Status */
.ice-status {
    display: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    margin-top: .25rem;
}
.ice-status.is-success {
    display: block;
    background: #EAF3DE;
    color: #3B6D11;
    border: 1px solid #C0DD97;
}
.ice-status.is-error {
    display: block;
    background: #FCEBEB;
    color: #A32D2D;
    border: 1px solid #F7C1C1;
}

/* Info column */
.ice-info-col {
    padding: 2rem 2rem;
    background: #faf9fe;
    border-left: 1px solid #ede9f8;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.ice-info-card {
    background: #fff;
    border: 1px solid #ede9f8;
    border-radius: 10px;
    padding: 1rem 1.1rem;
}
.ice-info-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #EEEDFE;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* SVG icons via background */
.ice-icon-clock {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='6.5' stroke='%23534AB7' stroke-width='1.2'/%3E%3Cpath d='M8 4.5V8l2.5 2' stroke='%23534AB7' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.ice-icon-mail {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Crect x='1.5' y='3.5' width='13' height='9' rx='1' stroke='%23534AB7' stroke-width='1.2'/%3E%3Cpath d='M1.5 4.5l6.5 5 6.5-5' stroke='%23534AB7' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.ice-icon-chat {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M8 1.5C4.41 1.5 1.5 4.07 1.5 7.25c0 1.2.4 2.32 1.07 3.24L1.5 13.5l3.09-.93A7.1 7.1 0 008 13c3.59 0 6.5-2.57 6.5-5.75S11.59 1.5 8 1.5z' stroke='%23534AB7' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.ice-info-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 3px;
}
.ice-info-desc {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}
