:root {
    --bg: #f6f8f7;
    --card: #ffffff;
    --text: #1f395b;
    --muted: #1f395b;
    --primary: #1f395b;
    --primary-dark: #cc3366;
    --primary-light: rgba(204, 51, 102, 0.1);
    --accent-light: #f7ecee;
    --border: #e2e8e5;
    --shadow: 0 14px 36px rgba(33, 54, 47, 0.08);
    --radius: 22px;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top right, rgba(201, 135, 145, .10), transparent 30%), linear-gradient(180deg, #fbfcfc 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.6;
}

.popupContainer{
    display: none;
}

a {
    color: inherit;
}



.treatmentNotification {
    color: white;
    padding: .5em;
    position: fixed;
    top: .5em;
    right: 0;
    z-index: 100;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1em;
    border-radius: 0.25rem;
    height: fit-content;
    z-index: 101;


}
.treatmentNotification.success {
    background-color: var(--success);
}
.treatmentNotification.error {
    background-color: var(--danger);
}
.treatmentNotification.warning {
    background-color: var(--warning);
}
.treatmentNotification.info {
    background-color: var(--info);
}
.treatmentNotification svg {
    fill: #FFF;
}
.treatmentNotification span {
    font-size: .75em !important;
}

.treatmentNotification .treatmentSuccess{
    display: flex;
    flex-direction: column;
    bottom: initial !important;
    top: .5em;
    margin: 0 .5em !important;
}


.page {
    width: min(100% - 28px, 760px);
    margin: 0 auto;
    padding: 22px 0 50px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
}

.hero {
    background: linear-gradient(145deg, #fff 0%, #f8fbfa 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
    margin-bottom: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--accent-light);
    color: #8e5660;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 7vw, 46px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.hero p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.quick-info {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 10px;
    margin-top: 22px;
}

.quick-item {
    padding: 15px 12px;
    border-radius: 17px;
    background: var(--primary-light);
    min-width: 0;
}

.quick-label {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 3px;
}

.quick-value {
    display: block;
    font-weight: 800;
    font-size: 15px;
    color: var(--primary-dark);
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(33, 54, 47, .05);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 20px;
}

h2 {
    margin: 0;
    font-size: 21px;
    letter-spacing: -.02em;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.steps {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px;
}

.steps li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fbfcfc;
}

.check {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    margin-top: 1px;
}

.notice {
    margin-top: 15px;
    padding: 14px 15px;
    border-radius: 15px;
    background: #fff8f0;
    border: 1px solid #f1dfc9;
    color: #775c3d;
    font-size: 14px;
}

.contact-card {
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: 0;
}

.contact-card .section-title .icon {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.contact-card p {
    color: rgba(255, 255, 255, .78);
}

.contact-email {
    display: block;
    margin: 14px 0 18px;
    font-weight: 800;
    word-break: break-word;
    color: #fff;
}

.btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 15px;
    padding: 14px 18px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: transform .15s ease, opacity .15s ease, background .15s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn-light {
    background: #fff;
    color: var(--primary-dark);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.email-box {
    background: linear-gradient(145deg, #fff 0%, #fbf8f9 100%);
}

.form-row {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

label {
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
}

input[type="email"],
input[type="text"],
input[type="tel"],
select,
textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid #cfd9d5;
    border-radius: 14px;
    background: #fff;
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(47, 111, 99, .10);
}

textarea {
    resize: vertical;
    min-height: 96px;
}

select {
    appearance: auto;
}

.privacy {
    margin-top: 10px !important;
    font-size: 12px;
    color: var(--muted) !important;
}

.feedback {
    display: none;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 13px;
    background: #edf8f3;
    color: var(--success);
    font-size: 14px;
    font-weight: 700;
}

.footer {
    padding: 18px 4px 0;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}


input[type="checkbox"] {
    display: none;
}
input[type="checkbox"]:checked+span,
input[type="checkbox"].checked+span
{
    background: white;
    border-color: var(--text);
    transform: rotate(45deg);
}
input[type="checkbox"]+span {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid var(--text);
    border-radius: 3px;
    transition: 0.3s;
    min-width: 24px;
    min-height: 24px;
}
input[type="checkbox"]:checked+span::after,
input[type="checkbox"].checked+span::after{
    color: var(--text);
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 12px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform: translate(-50%, -50%);
}

.checkbox div {
    display: flex;
    gap: .5em;
}

@media (max-width: 560px) {
    .page {
        width: min(100% - 20px, 760px);
        padding-top: 12px;
    }

    .hero {
        padding: 23px 19px;
        border-radius: 23px;
    }

    .card {
        padding: 19px;
    }

    .quick-info {
        grid-template-columns:1fr;
    }

    .quick-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .quick-label {
        margin: 0;
    }
}

