
body {
    width: 100%;
    min-height: 100svh;
    background-color: #FAFAFA;
    padding-top: 64px;
    overflow-x: hidden;
}

.text-sub {
    font-size: 1.125rem;
}

.page-wrapper {
    width: 100%;
    /* height: calc(100svh - 64px); */
    /* overflow-x: hidden; */
    /* overflow-y: auto; */
    /* margin-top: 64px; */
}

.cta {
    min-height: 64px;
    padding: 0.675rem 2rem !important;
    background: linear-gradient(150deg, #5254ce 20%, #b03fe0 55%, #cf3c9e 100%);
    border: 2px solid #c28cf5;
    color: white;
    outline: none;
    border-radius: 1rem;
    line-height: 42px;
    font-weight: 900; 
    font-size: 1.5rem; 
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;

    &.sm {
        height: 44px;
        min-height: 44px;
        max-height: 44px;
    }
    &:hover {
        background: linear-gradient(150deg, #7a5bd4 20%, #c24bf0 55%, #e046b3 100%);
        color: #fff;
        border-color: #e9a8f9;
        box-shadow: 0 1rem 3rem rgba(194, 75, 240, 0.55);
    }
    &:focus {
        outline: none;
        box-shadow: 0 0 0 0.3rem rgba(162, 60, 207, 0.5);
    }
}

.cta.secondary {
    min-height: 64px;
    line-height: 42px;
    font-weight: 900;
    padding: 0.675rem 2rem !important;
    color: white;
    border: 2px solid white;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    background-color: transparent;
    background: transparent;

    &.on-white {
        background: snow;
        color: #212529;
        border-color: #212529;
        box-shadow: 0 1rem 3rem rgba(194, 75, 240, 0.55);
    }
    &:hover {
        background: snow;
        color: #212529;
        border-color: #212529;
        box-shadow: 0 1rem 3rem rgba(194, 75, 240, 0.55);
        
        &.on-white {
            background: #5254ce;
            color: snow;
            border-color: #5254ce;
            box-shadow: 0 1rem 3rem rgba(194, 75, 240, 0.55);
        }
    }
    &:focus {
        outline: none;
        box-shadow: 0 0 0 0.3rem rgba(162, 60, 207, 0.5);
    }
}

.hero-header {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 600px;
    background-color: #5254ce;
    color: snow;
    padding-top: 128px;
    padding-bottom: 80px;
    overflow-x: hidden;
}

.hero-header .hero-headline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 2rem;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow-x: hidden;
}

.hero-header .headline-title {
    gap: 0.5rem;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
}
.hero-header .headline-title span {
    white-space: nowrap;
}

.hero-header .headline-subtitle {
    font-size: 2rem;
    line-height: 3rem;
    color: #FFFFFF;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
}

.hero-header .hero-tagline {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.375rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-header .accent {
    color: #5254ce;               /* invert text color relative to highlight */
    background-color: #FFFFFF;    /* snow/light background */
    font-weight: 900;
    padding: 0 0.25em;            /* small horizontal padding for breathing space */
    border-radius: 0.5rem;       /* optional: slightly rounded edges */
}

.why-todorix-accent {
    color: #FFFFFF;               /* invert text color relative to highlight */
    background-color: #5254ce;    /* snow/light background */
    font-weight: 900;
    padding: 0.125rem 0.25em;            /* small horizontal padding for breathing space */
    border-radius: 0.5rem;       /* optional: slightly rounded edges */
}

.c-arc-container {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 128px;
    overflow: hidden;
}

.c-arc-top {
    width: 100%;
    height: 128px;
    clip-path: ellipse(65% 100% at 50% 105%);
    background-color: #5254ce;
}

.c-arc-bottom {
    width: 100%;
    height: 128px;
    clip-path: ellipse(65% 200% at 50% -105%);
    background-color: #5254ce;
}

@media (min-width: 992px) {
    .todorix-slogan img {
        height: 112px !important;
    }
    .todorix-slogan h2 {
        font-size: 4rem !important;
        line-height: 4rem !important;
    }
    .todorix-slogan p {
        padding-left: 0.675rem !important;
    }
}
