﻿:root {
    --navy: #0b2e59;
    --blue: #1d72d8;
    --bg: #f6f8fb;
    --surface: #fff;
    --border: #e1e7ef;
    --text: #17324d;
    --muted: #627386;
    --danger: #c83b3b;
    --success: #19744b;
    --shadow: 0 18px 48px rgba(11,46,89,.10)
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Inter,"Segoe UI",Arial,sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top right,rgba(29,114,216,.08),transparent 30rem),var(--bg)
}

.ee-container {
    width: min(1180px,calc(100% - 32px));
    margin: auto
}

.ee-header {
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid var(--border)
}

.ee-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.ee-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy)
}

    .ee-brand > span:last-child {
        display: flex;
        flex-direction: column
    }

    .ee-brand small, .ee-context small {
        color: var(--muted)
    }

.ee-logo {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(145deg,var(--blue),var(--navy))
}

.ee-context {
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.ee-main {
    flex: 1;
    padding: 42px 0 64px
}

.ee-footer {
    background: var(--navy);
    color: #dce7f3
}

    .ee-footer .ee-container {
        min-height: 68px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 13px
    }

.ee-heading {
    margin-bottom: 28px
}

    .ee-heading span {
        color: var(--blue);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase
    }

    .ee-heading h1 {
        margin: 8px 0 0;
        color: var(--navy);
        font-size: clamp(32px,5vw,52px);
        line-height: 1.05
    }

    .ee-heading p {
        max-width: 760px;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.65
    }

.ee-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 330px;
    gap: 24px;
    align-items: start
}

.ee-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow)
}

.ee-card-body {
    padding: 28px
}

.ee-section + .ee-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border)
}

.ee-section h2 {
    margin: 0 0 5px;
    color: var(--navy);
    font-size: 20px
}

.ee-section p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 14px
}

.ee-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px
}

.ee-field {
    position: relative
}

.ee-full {
    grid-column: 1/-1
}

.ee-input, .ee-select {
    width: 100%;
    min-height: 56px;
    border: 1px solid #cfd9e5;
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    font: inherit;
    outline: none
}

.ee-input {
    padding: 21px 14px 7px
}

.ee-select {
    padding: 0 14px
}

    .ee-input:focus, .ee-select:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 4px rgba(29,114,216,.11)
    }

.ee-label {
    position: absolute;
    left: 14px;
    top: 9px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700
}

.required {
    color: var(--danger)
}

.ee-check {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.ee-panel {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fbfcfe
}

    .ee-panel[hidden] {
        display: none
    }

.ee-choices {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px
}

.ee-choice {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 16px
}

    .ee-choice label {
        margin-left: 8px
    }

    .ee-choice strong, .ee-choice small {
        display: block
    }

    .ee-choice small {
        margin: 5px 0 0 25px;
        color: var(--muted)
    }

.ee-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px
}

.ee-btn {
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 12px;
    font: inherit;
    font-weight: 800;
    cursor: pointer
}

.ee-btn-primary {
    color: #fff;
    background: linear-gradient(135deg,var(--blue),#1559aa)
}

.ee-btn-secondary {
    color: var(--navy);
    border: 1px solid var(--border);
    background: #f2f6fb
}

.ee-assistant {
    position: sticky;
    top: 24px
}

.ee-assistant-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    font-size: 27px;
    background: linear-gradient(145deg,#3b88e8,var(--navy))
}

.ee-assistant-status {
    min-height: 64px;
    margin-top: 14px;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #f5f8fc;
    color: var(--muted)
}

.ee-message {
    display: block;
    margin-bottom: 20px;
    padding: 14px;
    border: 1px solid #efc5c5;
    border-radius: 12px;
    background: #fff3f3;
    color: #a32f2f
}

@media(max-width:920px) {
    .ee-layout {
        grid-template-columns: 1fr
    }

    .ee-assistant {
        position: static;
        order: -1
    }
}

@media(max-width:650px) {
    .ee-header-inner, .ee-footer .ee-container {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 16px 0
    }

    .ee-context {
        align-items: flex-start
    }

    .ee-grid, .ee-choices {
        grid-template-columns: 1fr
    }

    .ee-full {
        grid-column: auto
    }

    .ee-card-body {
        padding: 20px
    }

    .ee-actions {
        flex-direction: column-reverse
    }

    .ee-btn {
        width: 100%
    }
}
.ee-registration-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ee-registration-card {
    min-height: 190px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s, transform .18s, background .18s;
}

    .ee-registration-card:hover {
        transform: translateY(-2px);
        border-color: var(--blue);
        box-shadow: 0 12px 28px rgba(29, 114, 216, .12);
    }

    .ee-registration-card.is-selected {
        border-color: var(--blue);
        background: #f1f7ff;
        box-shadow: 0 0 0 4px rgba(29, 114, 216, .10);
    }

.ee-registration-card__name {
    color: var(--navy);
    font-size: 18px;
    font-weight: 800;
}

.ee-registration-card__description {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.ee-registration-card__price {
    margin-top: auto;
    padding-top: 22px;
    color: var(--navy);
    font-size: 24px;
    font-weight: 800;
}

.ee-registration-card__action {
    margin-top: 12px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

.ee-registration-card.is-selected .ee-registration-card__action::before {
    content: "✓ ";
}

.ee-registration-card.is-selected .ee-registration-card__action {
    color: var(--success);
}

@media (max-width: 650px) {
    .ee-registration-types {
        grid-template-columns: 1fr;
    }
}

.ee-registration-card__vat {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.ee-success-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px;
    text-align: center;
}

.ee-success-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--success);
    font-size: 38px;
    font-weight: 800;
}

.ee-success-page h1 {
    margin: 8px 0 14px;
    color: var(--navy);
    font-size: clamp(30px, 5vw, 46px);
}

.ee-success-page p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.ee-success-reference {
    margin: 30px 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f6f9fd;
    color: var(--navy);
}

    .ee-success-reference strong {
        display: block;
        margin-top: 5px;
        font-size: 25px;
    }

.ee-success-note {
    font-size: 14px !important;
}