@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
    --font-primary: "DM Sans", sans-serif;
    --color-primary: #4770B4;
    --color-secondary: #FDC971;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: #F7F8FB;
}

img {
    max-width: 100%;
    height: auto;
}

textarea {
    height: 80px;
    padding: 2.5rem 1rem .4rem 1rem;
    border: 1px solid #B1B6CA;
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    border-radius: 12px;
    background-color: #fff;
}

a {
    color: #4770B4;
    text-decoration: underline;
}

select {
    width: 100%;
    height: 56px;
    padding: 0 2.6rem 0 1rem;
    font-size: 20px;
    color: rgba(20, 36, 95);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg%20width='19'%20height='12'%20viewBox='0%200%2019%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M1.25%201.25003L9.5%2010.1346L17.75%201.25003'%20stroke='%234770B4'%20stroke-width='2.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .7rem center;
    background-size: 18px;
    border-radius: .5rem;
    border: 1px solid #D6D8E7;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.select--floating {
    height: 80px;
    padding: 2rem 2.6rem .4rem 1rem;
    border-radius: 12px;
    font-size: 20px;
}

.container {
    margin: 0 auto;
    padding: 0 1.5rem;
}

#prevBtn {
    font-size: 20px;
    font-weight: 600;
    background-color: #fff;
}

#nextBtn {
    font-weight: 600;
    box-shadow: 0px -2px 2px 0px #40404026 inset;
}

#nextBtn.is-disabled {
    background-color: #ECEEF4;
    color: #9398BB;
    box-shadow: none;
    box-shadow: 0px -2px 2px 0px #40404026 inset;
}

#nextBtn.is-disabled svg path {
    stroke: #9398BB;
}

.logo {
    max-width: 180px;
}

.btn--secondary {
    background-color: var(--color-secondary);
    font-weight: 600;
}

.btn--outline {
    border: 1.5px solid #4770B4;
    box-shadow: 0px 3px 6px 0px #07006E08;

}

.btn--next {
    padding: 1.6rem 1rem;
}

.checkbox,
.radio {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    border-radius: 12px;
    white-space: nowrap;
}

.radio-input {
    appearance: none;
    -webkit-appearance: none;
}

.checkbox {
    position: relative !important;
}

input[type="radio"]:checked {
    background-color: #4770B4;
    opacity: .1;
    box-shadow: 0px 5px 15px 0px #4770B41A;
}

.radio.is-checked {
    border-color: #4770B4;
    background: #E8EEFB;
    box-shadow: 0px 5px 15px 0px #4770B41A;
}

.radio--small.error.is-checked {
    border: 2px solid #E0554B;
    background: #FFDEDC;
    box-shadow: 0px 5px 15px 0px #4770B41A;
}

.radio--small.error.is-checked .radiomark {
    border: 6px solid #982315;
}

.radio {
    position: relative;
    width: 180px;
    display: flex;
    border: 2px solid #D6D8E7;
    font-size: 16px;
    border-radius: 1rem;
}

.radio.is-checked {
    font-weight: 600;
}

.radio--big {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 150px;
    max-width: 190px;
}

.radio--small {
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    max-width: 194px;
}

.radio--small .radiomark {
    min-width: 21px;
    min-height: 21px;
    border-radius: 50%;
    border: 1px solid #D9DBE9;
}

.radio--medium .radiomark {
    position: absolute;
    top: .6rem;
    right: .5rem;
    min-width: 16px;
    min-height: 16px;
    border-radius: 50%;
    border: 1px solid #D9DBE9;
}

.radio--medium.is-checked .radiomark {
    border: 4px solid #4770B4;
}

.radio--small.is-checked .radiomark {
    border: 6px solid #4770B4;
}

.radio--medium {
    padding: 2rem 1rem 1rem 1rem;
    min-height: 84px;
    max-width: 150px;
    /* aspect-ratio: 1.50; */
}

header {
    padding: 1rem 0;
}

footer {
    padding: 1rem 0;
    background-color: var(--color-primary);
}

.hero {
    margin-bottom: 42px;
    background-image: url('../assets/hero.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
    border-radius: 24px;
}

.hero__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem 1rem 1.5rem 1rem;
    height: 300px;
    background: linear-gradient(180deg, rgba(5, 7, 20, 0) 44.37%, rgba(5, 7, 20, 0.75) 76.39%);
    border-radius: 24px;
}

.hero h2 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 32px;
    line-height: 114.99999999999999%;
    letter-spacing: -0.5%;
    color: #fff;
}

.hero p {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.5%;
    color: #fff;
}

/* Form Elements */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F1F2F9;
}

.form-group__alert {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #E0554B1A;
    border: 1px solid #E0554B;
    border-radius: 10px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0%;
    color: #1C265B;
}

.form-group__alert.is-none {
    display: none;
}

.form-group--borderless {
    margin-bottom: 1rem;
    padding-bottom: 0;
    border-bottom: none;
}

.checkbox-label p {
    position: relative;
    top: 1px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
}

.checkbox-label a {
    font-weight: 600;
}

.form-group--last {
    margin: 0 0 .5rem 0;
}

.form-label {
    display: block;
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 600;
    line-height: 114.99999999999999%;
    letter-spacing: -.5%;
    color: #1C265B;
}

#birthDateFormGroup label,
#startDateFormGroup label {
    margin-bottom: 16px;
}

.form-label--abs {
    position: absolute;
    top: .9rem;
    left: 1rem;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #4770B4;
}

.form-input {
    width: 100%;
    height: 56px;
    padding: 0 1rem;
    border: 1px solid #d1d5db;
    color: #14245F;
    border-radius: 0.5rem;
}

textarea,
select,
.form-input,
input[type="text"] {
    font-size: 20px;
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
    color: #14245F;
    opacity: .7;
    font-size: 19px;
}

textarea:focus,
select:focus,
.form-input:focus,
input[type="text"]:focus {
    outline: none;
    border-color: #4770B4;
    box-shadow: 0 0 0 3px rgba(71, 112, 180, 0.15);
}

textarea[readonly]:focus,
.form-input[readonly]:focus,
input[type="text"][readonly]:focus {
    border-color: #B1B6CA;
    box-shadow: none;
    cursor: default;
}

textarea.is-valid,
select.is-valid,
.form-input.is-valid,
input[type="text"].is-valid {
    border-color: #4770B4;
    box-shadow: 0 0 0 3px rgba(71, 112, 180, 0.15);
}

select:checked {
    border-color: #4770B4;
}

textarea.is-error,
select.is-error,
.form-input.is-error,
input[type="text"].is-error {
    border-color: #E0554B;
    box-shadow: 0 0 0 3px rgba(224, 85, 75, 0.15);
}

.radio-group {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

/* Make the options share the row equally instead of using a fixed 180px width
   (3 options ≈ 33% each, 2 options ≈ 50%), so they never overflow the screen. */
.radio-group .radio {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    white-space: normal;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.radio-label input[type="radio"] {
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.checkbox-label input {
    position: relative;
    top: 2px;
}

input[type="checkbox"] {
    flex-shrink: 0;
    width: 21px;
    height: 21px;
    margin-top: 0.125rem;
    background-color: #fff;
    border: 1px solid #D6D8E7;
    border-radius: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.15s, border-color 0.15s;
}

input[type="checkbox"]:checked {
    background-color: #4770B4;
    border-color: #4770B4;
    background-image: url("data:image/svg+xml,%3Csvg%20width='14'%20height='11'%20viewBox='0%200%2014%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M1.25%205.75L5%209.5L12.75%201.25'%20stroke='white'%20stroke-width='2.5'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
}





footer .logo-wrap {
    margin-bottom: 1rem;
}

footer .contact {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    background-color: #fff;
}

footer .contact h2 {
    margin-bottom: 1.4rem;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    color: #1C265B;
}

footer .contact-box:nth-child(3) {
    margin: 1rem 0;
    position: relative;
    left: 7px;
}

footer .footer-additional {
    color: #1C265B;
    opacity: .7;
    font-size: 14px;
    line-height: 24.84px;
}

footer .sms-ssl-wrap {
    margin-bottom: 2rem;
}

footer .sms-ssl-wrap span {
    font-weight: bold;
    text-decoration: underline;
}

footer .sms-ssl-wrap p {
    color: #fff;
    font-size: 14px;
    line-height: 22px;
}

footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

footer .footer-links a {
    flex: 50%;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

footer .cta {
    margin-bottom: 1rem;
    box-shadow: 0px 2px 5px 0px #FDC97140;

}

#info-card {
    margin-bottom: 1.8rem;
    padding: 1rem 1rem .2rem 1rem;
    background-image: url('/assets/card-bg.png');
    background-color: #5671AF;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 24px;
}

#info-card h3 {
    margin-bottom: .5rem;
    font-weight: 700;
    font-style: Bold;
    font-size: 32px;
    line-height: 114.99999999999999%;
    letter-spacing: -0.5%;
    color: #fff;
}

#info-card p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.5%;
    color: #fff;
}

.info-card__badge {
    display: inline-block;
    margin-bottom: .8rem;
    padding: .4rem .6rem;
    line-height: 17.95px;
    font-weight: 600;
    border-radius: 1000px;
    background-color: #fff;
}

.info-card__badge-wrap {
    position: relative;
    top: 2px;
}

#step2 .radio .accent--primary {
    font-size: 14px;
    opacity: .7;
    color: #14245F;
}

#step2 .radio .accent--secondary {
    font-size: 9px;
    opacity: .7;
    font-weight: 400;
    color: #14245F;
}

/** Tarrif cards */
.tariff-card {
    position: relative;
    background: #F7F8FB;
    margin-bottom: 2rem;
    border: 1px solid #D6D8E7;
    box-shadow: 0px 5px 15px 0px #4770B429;
    border-radius: 20px;
}

.tariff-card.is-selected {
    border: 3px solid #153c7b;
    box-shadow: 0px 5px 15px 0px #4770B429;
}

.tariff-card__recommended {
    display: flex;
    justify-content: center;
    padding: 1.3em .2rem;
    background: linear-gradient(89.3deg, #14245F -2.43%, #4770B4 120.33%);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.tariff-card__recommended span {
    margin-right: .7rem;
}

.tariff-card__name {
    padding: 2rem .2rem;
    background-color: #E8EEFB;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-weight: 700;
    font-size: 30px;
    line-height: 25px;
    letter-spacing: 0%;
    text-align: center;
    color: #14245F;
}

.tariff-card__feature {
    display: flex;
    flex-direction: column;
    padding: 1.5rem .2rem;
    border-bottom: 1px solid #e5e6eb;
}

.tariff-card__feature:last-child {
    border-bottom: none;
}

.tariff-card__feature-label {
    margin-bottom: .3rem;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #14245F;
    opacity: .7;
}

.tariff-card__feature-value {
    font-weight: bold;
    color: #14245F;
    opacity: .8;
}

.tariff-card__feature-label,
.tariff-card__feature-value {
    /* padding: 1rem .2rem; */
    text-align: center;
}

.tariff__ctas-wrap {
    padding: 1.6rem 1rem 0 1rem;
    padding-top: 1.6rem;
    background: #edeff5;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.tariff-card__price {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 3%;
    color: #14245F;
}

.tariff-card__price-period {
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    opacity: .7;
}

.tariff-card__btn-wrap {
    padding: 1rem 0;
}

.tariff-card .btn--secondary {
    width: 100%;
    padding: 1.59rem 0;
    font-size: 20px;
    box-shadow: 0px -2px 2px 0px #40404026 inset;
}

.tariff-card--special .tariff-card__features {
    background-color: #4770B4;
}

.tariff-card--special .tariff-card__feature {
    border-color: #FFFFFF1A;
}

.tariff-card--special .tariff-card__feature-label {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    opacity: .9;
}

.tariff-card--special .tariff-card__feature-value {
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
}

.additional-services {
    margin: 2rem 0 2rem 0;
    padding: 1rem .2rem;
    border-bottom: 1px solid #ACC3EA;
    cursor: pointer;
    user-select: none;
}

.additional-services p {
    font-weight: 600;
    color: #14245F;
}

.additional-services__icon {
    display: flex;
    align-items: center;
}

.additional-services .icon-minus {
    display: none;
}

.additional-services.is-open .icon-plus {
    display: none;
}

.additional-services.is-open .icon-minus {
    display: block;
}

/* Informational tariff comparison cards (read-only, not selectable) */
.additional-services-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.additional-services-content.is-none {
    display: none;
}

.extra-tariff-card {
    position: relative;
    background: #F7F8FB;
    border: 1px solid #D6D8E7;
    box-shadow: 0px 5px 15px 0px #4770B429;
    border-radius: 20px;
    overflow: hidden;
}

.extra-tariff-card--recommended {
    border: 2px solid #4770B4;
}

.extra-tariff-card__recommended {
    display: flex;
    justify-content: center;
    padding: 1.3rem .2rem;
    background: linear-gradient(89.3deg, #14245F -2.43%, #4770B4 120.33%);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
}

.extra-tariff-card__name {
    padding: 2rem .2rem;
    background-color: #E8EEFB;
    font-weight: 700;
    font-size: 28px;
    line-height: 25px;
    text-align: center;
    color: #14245F;
}

.extra-tariff-card__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    padding: 1.2rem .8rem;
    text-align: center;
    border-bottom: 1px solid #e5e6eb;
}

.extra-tariff-card__row:last-child {
    border-bottom: none;
}

.extra-tariff-card__label {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: #14245F;
    opacity: .7;
}

.extra-tariff-card__value {
    font-weight: 700;
    font-size: 16px;
    color: #14245F;
}

.extra-tariff-card__value--lines {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.extra-tariff-card__check {
    display: block;
}

.extra-tariff-card--special .extra-tariff-card__name {
    background-color: #5878B8;
    color: #fff;
}

.extra-tariff-card--special .extra-tariff-card__rows {
    background-color: #4770B4;
}

.extra-tariff-card--special .extra-tariff-card__row {
    border-color: #FFFFFF1A;
}

.extra-tariff-card--special .extra-tariff-card__label {
    color: #fff;
    opacity: .9;
}

.extra-tariff-card--special .extra-tariff-card__value {
    color: #fff;
}

#step3services {
    background-color: #E8EEFB;
}

.services {
    padding: .65rem 0;
}

.services__title {
    padding: 1.1rem .2rem;
    font-weight: 700;
    font-size: 24px;
    line-height: 114.99999999999999%;
    letter-spacing: -0.5%;
    color: #1C265B;
}

.services__card {
    min-height: 149px;
    margin: 1rem 0 1.3rem 0;
    padding: 1.3rem;
    background: linear-gradient(84.03deg, #14245F 7.51%, #4770B4 80.8%);
    border-radius: 12px;
}

.services__card-title {
    margin-bottom: 1.7rem;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFF;
}

.services__card-title span {
    font-weight: 400;
    font-size: 11px;
    line-height: 100%;
    letter-spacing: 0%;
    opacity: .8;

}

.services__card-price {
    margin-top: 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFF
}

#img__services-card--1 {
    position: relative;
    top: 10px;
}

#img__services-card--2 {
    position: relative;
    top: 16px;
}

#img__services-card--3 {
    position: relative;
    top: 3px;
}

#img__services-card--4 {
    position: relative;
    top: 3px;
}

.tabs {
    position: relative;
}

.tab {
    flex: 0 0 49%;
    margin-bottom: 8px;
    padding: 1rem .2rem;
    font-size: 16px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    border-radius: 8px;
    border-bottom: 2.5px solid #B9BCD0;
    background: linear-gradient(360deg, #FFFFFF 25%, rgba(255, 255, 255, 0) 100%);
    color: #182A66;
    text-align: center;
}

.tab.is-active {
    background: #fff;
    border-bottom: 2.5px solid #162863;
    font-weight: 600;
}

.tabs__contents {
    margin-bottom: 2rem;
}

.tabs__arrows {
    position: absolute;
    right: 0;
    bottom: -9px;
    display: flex;
    padding: 0 1rem;
    gap: 1.6rem;
    background-color: #E8EEFB;
}

.tabs__arrows svg {
    transform: scale(1.6);
}

.tabs__arrow-left,
.tabs__arrow-right {
    cursor: pointer;
    transition: opacity 0.2s;
}

.tabs__arrow-left {
    transform: rotate(180deg);
}

.tabs__arrow-left.is-disabled,
.tabs__arrow-right.is-disabled {
    opacity: .5;
    cursor: default;
}

.services__disclaimer {
    padding: 1rem;
    font-weight: 400;
    font-size: 12px;
    line-height: 18.8px;
    letter-spacing: 0%;
    border-radius: 12px;
    background-color: #DAE0EE;
    color: #1C265B;
    opacity: .7;
}

.services__table-packets {
    position: relative;
    display: flex;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    padding-bottom: 2rem;
}

.packets-wrap {
    display: flex;
    flex-wrap: nowrap;
}

/* Width of the scrollbar */
.services__table-packets::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Background track */
.services__table-packets::-webkit-scrollbar-track {
    background: #FFFFFF;
}

/* Draggable thumb */
.services__table-packets::-webkit-scrollbar-thumb {
    background: #4770B4;
    border-radius: 1000px;
}

/* Hover state */
.services__table-packets::-webkit-scrollbar-thumb:hover {
    background: #385f9f;
}

.services__arrows-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: green;
}

.services__packets-preview {
    position: relative;
    top: 60px;
    margin-right: 16px;
    white-space: nowrap;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #14245F;
}

.services__packets-preview h3 {
    padding: 1rem 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #14245F;
    opacity: .7;
}

.services__packets:nth-child(2) {
    background: linear-gradient(89.3deg, #14245F -2.43%, #4770B4 120.33%);
}

.services__packets:nth-child(2) p {
    color: #FFF;
}

.services__packets-preview p {
    padding: 1rem 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #14245F;
}

.services__packets {
    min-width: 280px;
    margin-right: 4px;
    border-radius: 8px;
    border: 1px solid #EEEFF4;
    white-space: nowrap;
    background-color: #FFF;
    box-shadow: 0px 5px 15px 0px #4770B429;
}

.services__packets h3 {
    padding: 1rem 2.6rem;
    font-weight: 700;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E8EEFB 100%);
    text-align: center;
    color: #14245F;
}

.services__packets p {
    padding: 1rem 2.6rem;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #14245F;
}

.services-overview {
    margin-top: 2rem;
}

.services-overview .btn--outline {
    margin-bottom: 2rem;
    padding: 1.4rem .2rem;
}

.services-overview-box {
    padding: 1rem;
    background: #FDC971;
    border-radius: 12px;
    text-align: center;
}

.services-overview-box p {
    font-weight: 400;
    font-size: 12px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #170F49;
}

.step4__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 155%;
    letter-spacing: -0.5%;
}

.step4__title-desc {
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-size: 18px;
    line-height: 155%;
    letter-spacing: -0.5%;
    opacity: .6;
}

.step4-consent {
    margin-top: 2rem;
}

.step4-consent p span {
    font-weight: bold;
}

.optional {
    position: relative;
    margin-top: 1.7rem;
    margin-bottom: 32px;
    padding-top: 2rem;
    padding-bottom: 1rem;
    background: #E8EEFB;
}

.optional__badge {
    position: absolute;
    padding: .4rem .6rem .4rem .7rem;
    top: 1rem;
    right: 1rem;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 2%;
    border: 1px solid #4770B4;
    background: #4770B41A;
    border-radius: 56px;
    text-align: center;
    color: #4770B4;
}

.optional h3 {
    margin-bottom: 24px;
    padding-right: 100px;
    font-weight: 700;
    font-size: 24px;
    line-height: 114.99999999999999%;
    letter-spacing: -0.5%;
    color: #1C265B;
}

.optional p {
    margin-bottom: 16px;
    font-weight: 400;
    font-size: 12px;
    line-height: 18.8px;
    letter-spacing: 0%;
    color: #1C265B;
}

.optional label {
    font-size: 10px;
    letter-spacing: 0%;
    color: #1C265B;
}

.optional__accept-wrap {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 12px;
    border-radius: 8px;
    background-color: #FFF;
}

/* Progress Bar */
.progress-container {
    padding-top: .5rem;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}

.progress-step-sep.active svg path {
    stroke: #619DFF;
}

.progress-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-text {
    position: absolute;
    top: 100%;
    display: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
    color: #14245F;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 114.99999999999999%;
    background-color: #E5E9EF;
    color: #fff;
    color: #14245F;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-circle {
    background: #4770B4;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 51, 102, 0.2);
}

.step-circle-mark {
    position: absolute;
    top: 10px;
    left: 11px;
    z-index: 20;
    display: none;
}

.progress-step.completed .step-circle {
    font-size: 0;
}

.progress-step.completed .step-circle-mark {
    display: block;
}

.progress-step.completed .step-circle-mark {
    content: "";
    background-image: url('/assets/icon__completed.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 45%;
    position: absolute;
}

.step-label {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    color: #6b7280;
}

.progress-step.active .step-label {
    color: #003366;
    font-weight: 500;
}

.max {
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
}

main {
    padding: 2rem 0;
}

/* Form Card */
#step1,
#step2,
#step3,
#step4,
#step5 {
    margin: 0 auto;
    min-height: calc(100vh - 280px);
}

.step {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.step.active-step {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 2rem;
    border-top: 1px solid #f3f4f6;
}

.navigation-buttons[data-step="1"] .btn--secondary {
    width: 100%;
}

.navigation-buttons:not([data-step="1"]) .btn--secondary {
    width: 70%;
}

.navigation-buttons:not([data-step="1"]) .btn--outline {
    width: 28%;
}

.alert--info {
    padding: 0 .2rem 2.5rem .2rem;
    font-weight: 400;
    font-size: 14px;
    line-height: 24.84px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #1C265B;
    opacity: .7;
}

.payment-method-details-title {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 24px;
    line-height: 155%;
    letter-spacing: -0.5%;
    color: #1C265B;
}

.iban-form {
    margin-bottom: 2.2rem;
}

.pre-label-msg {
    font-weight: 600;
    font-size: 20px;
    line-height: 155%;
    letter-spacing: 0%;
    color: #1C265B;
}

.iban-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 155%;
    letter-spacing: 0%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    cursor: pointer;
    color: #4770B4;
}

.uniVersa-consent {
    font-weight: 400;
    font-size: 10px;
    line-height: 16.8px;
    letter-spacing: 0%;
}

/* Review Section */

.review {
    position: relative;
    margin-bottom: 1rem;
}

.review-grid {
    position: relative;
    padding: 1.7rem 1rem;
    background-color: #FFF;
    box-shadow: 0px 5px 15px 0px #4770B429;
    border-radius: 12px;
    border: 1px solid #5E5EEE29;
}

.review-grid h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C265B;
}

.review-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C265B;
}

.review-item {
    margin-bottom: .6rem;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C265B;
    opacity: .7;
}

.review-item-alert {
    padding: 1rem;
    background-color: #4770B4;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
}

.review-item-alert--first {
    margin-bottom: .5rem;
}

.review-edit {
    position: absolute;
    top: 10px;
    right: 4px;
    padding: 4px 12px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 1000px;
    border: 1px solid #4770B4;
    color: #4770B4;
    background-color: #4770B41A;
    transform: scale(.9);
}

.review-edit--offset {
    top: -.2rem;
}

#reviewEmail,
#reviewBirthDate,
#reviewInsuranceStartDate {
    margin-bottom: 1.5rem;
}



/** review tariff card */
.review-tariff-card {
    border-radius: 20px;
    box-shadow: 0px 5px 15px 0px #4770B429;
}

.review-tariff-features {
    background-color: #fff;
}

.review-tariff-name {
    padding: 1rem 2rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: #FFFFFF;
    background: linear-gradient(89.02deg, #14245F -32.5%, #4770B4 106.44%);
    /* background: linear-gradient(0deg, #4770B4, #4770B4),
        linear-gradient(89.02deg, #14245F -32.5%, #4770B4 106.44%); */
    font-weight: 800;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0%;
}

.review-feature-text {
    padding: 1rem 2rem;
    border-bottom: 1px solid #EEEFF4;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #14245F;
}

.review-tariff-price {
    padding: 1.4rem 0;
    text-align: center;
    line-height: 100%;
    letter-spacing: 3%;
    color: #14245F;
    background: #f7f9ff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.review-tariff-price span {
    font-size: 32px;
    font-weight: 700;
}

.post-review-container {
    background-color: #E8EEFB;
}

.post-review-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #1C265B;
}

.post-review-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 18.8px;
    letter-spacing: 0%;
    color: #1C265B;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(23, 40, 99, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 8px;
    width: 500px;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    transition: transform 0.3s;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-small {
    width: 300px;
}

.modal-medium {
    width: 500px;
}

.modal-large {
    width: 800px;
}

.modal-full {
    width: 95%;
    height: 95%;
}

.modal-header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.modal-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}

.modal-btn-primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

#zertifiziertes-link {
    color: #fff;
}

.radio-content {
    position: relative;
    left: -2px;
    bottom: -7px;
}

.mind-wrap {
    font-size: 20px;
}

.mind {
    font-weight: 400;
    font-size: 14px;
    line-height: 114.99999999999999%;
    letter-spacing: 0%;
    color: #14245F;
    opacity: .7;
}

.euro {
    font-size: 20px;
}

.small-text {
    margin: 32px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 24.84px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #1C265B;
    opacity: .7;
}

.header-content {
    display: flex;
    justify-content: space-between;
}

.header-contact {
    display: flex;
    gap: 40px;
}

.review-icon-wrap {
    min-width: 24px;
}

.header-phone,
.header-email {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-content h5 {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #1C265B;
}

.header-content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #6A7189;
}

.header-contact {
    display: none;
}

.review-pdf {
    width: 100%;
    box-shadow: 0px -2px 2px 0px #40404026 inset;
}

@media (min-width: 1024px) {

    html {
        font-size: 18px;
    }

    .edge-container {
        padding: 0 100px;
    }

    header {
        padding: 1.5rem 0;
        margin-bottom: 24px;
        border-bottom: 2px solid #F1F2F9;
    }

    header .logo {
        position: relative;
        top: 7px;
    }

    .progress-steps {
        padding: 0 3rem;
    }

    .progress-container {
        margin-bottom: 34px;
    }

    .header-contact {
        display: flex;
    }

    .step-circle {
        transform: scale(1.2);
    }

    .step-text {
        display: block;
        white-space: nowrap;
        padding-top: 21px;
    }

    .hero__wrap {
        padding: 32px 260px 48px 32px;
    }

    .radio--big,
    .radio--small,
    .radio--medium {
        max-width: none;
    }

    .tariff-grid,
    .additional-services,
    .additional-services-content,
    .services {
        margin-left: -100px;
        margin-right: -100px;
    }

    .tariff-grid,
    .additional-services-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        align-items: flex-end;
    }

    .tariff-grid .tariff-card,
    .additional-services-content .extra-tariff-card {
        margin-bottom: 0;
    }

    .person-fields {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        column-gap: 1rem;
    }

    .person-fields .form-group {
        grid-column: span 3;
    }

    .person-fields .person-fields__wide {
        grid-column: span 4;
    }

    .person-fields .person-fields__narrow {
        grid-column: span 2;
    }

    .person-fields #birthDateFormGroupPreview {
        grid-column: 1 / -1;
    }

    .review-pdf {
        width: 50%;
        white-space: nowrap;
    }

    #info-card {
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }

    .tab {
        flex: 0 0 24%;
    }

    .tabs__arrows {
        display: none;
    }

    #step5 .container {
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }

    .review-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: stretch;
        margin-bottom: 2rem;
    }

    .review-columns .review-grid {
        margin-bottom: 0;
    }

    .services__table-packets {
        display: flex;
        justify-content: space-between;
        overflow-x: auto;
    }

    footer .footer-links-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 48px;
    }

    footer .footer-links {
        flex-wrap: nowrap;
        gap: 48px;
        margin: 0;
    }

    footer .footer-links a {
        flex: unset;
    }

    footer .cta {
        margin: 0;
    }

    footer .contact {
        padding: 1.5rem;
    }

    footer .contact-wrap {
        display: flex;
        justify-content: space-between;
    }

    footer .contact-wrap .contact,
    footer .contact-wrap .sms-ssl-wrap {
        width: 49%;
    }

    .navigation-buttons:not([data-step="1"]) .btn--secondary {
        width: 50%;
    }

    .navigation-buttons:not([data-step="1"]) .btn--outline {
        width: 49%;
    }
}

@media (min-width: 1300px) {

    .tariff-grid,
    .additional-services,
    .additional-services-content,
    .services {
        margin-left: -200px;
        margin-right: -200px;
    }
}