:root {
    --text-color: #14112C;
    --white-color: #FFFFFF;
    --doted-border-color: #B5B5B5;
    --red-gradient-bg: radial-gradient(59.36% 59.36% at 50% 50%, #D32A35 0%, #220305 100%);
    --border-radius-light: 10px;
    --border-radius-large: 20px;
    --light-pink-bg: #FFF8F8;

    --tick-icon: url("data:image/svg+xml,%3Csvg width='18' height='22' viewBox='0 0 18 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.77873 10.0454L0.139219 1.48338C-0.349437 0.58159 0.674314 -0.383579 1.54578 0.15731L16.8801 9.67476C17.508 10.0645 17.5108 10.9772 16.8853 11.3708L1.53625 21.0298C0.667955 21.5762 -0.361868 20.6169 0.121698 19.7121L4.78146 10.9932C4.93982 10.6969 4.9388 10.3408 4.77873 10.0454Z' fill='%23D32A35'/%3E%3C/svg%3E%0A");
}

.hero-wrap {
    background: var(--red-gradient-bg);
}

h1 {
    font-size: clamp(2.25rem, 0.402rem + 9.2399vw, 6.125rem);
}

.bg-light {
    background-color: var(--light-pink-bg) !important;
}

.solution-slider .swiper-wrapper {
    display: flex;
}

.solution-slider .swiper-wrapper .swiper-slide {
    height: auto;
}

.button.button-primary {
    background-color: var(--white-color);
    border-radius: var(--border-radius-light);
    color: var(--text-color);
}

.stats-card {
    border: 1px dashed #B5B5B5;
    padding: 40px 20px;
    border-radius: 20px;
}

.challange-card {
    border: 1px solid #DFDFDF;
    border-radius: var(--border-radius-light);
    height: 100%;
    padding: 30px 20px;
}

.result-content {
    padding: 30px;
    border-radius: var(--border-radius-large);
    border: 1px solid #C5C5C5;
    height: 100%;
}

.gradient-text {
    display: inline-block;
    background: var(--red-gradient-bg);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-bg {
    background: var(--red-gradient-bg);
}

.cta-block {
    border-radius: var(--border-radius-large);
}

.solution-card {
    padding: 20px;
    background-color: var(--white-color);
    border: 1px solid #DFDFDF;
    border-radius: var(--border-radius-large);
    height: 100%;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tick-list li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.tick-list li:before {
    content: '';
    height: 24px;
    width: 20px;
    background-image: var(--tick-icon);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::before {
    content: "";
    height: 9px;
    width: 100%;
    background: url(../../images/colors-queen-img/underline.webp) no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: -10px;
    right: 0;
}