body {
    font-family: "Source Sans 3", sans-serif;
    font-optical-sizing: auto;
    color: #1a1a1a;
    font-size: 1.375rem;
    font-weight: 400;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
}
img {
    max-width: 100%;
}
a {
    color: #2b8dd9;
}
a:hover {
    text-decoration: none;
}
section {
    padding: 4rem 0;
}
strong {
    font-weight: 700;
}
p {
    margin-bottom: 2.125rem;
}
sup {
    top: -0.8em;
    left: 0.2em;
    font-size: 60%;
    font-weight: 600;
    margin-right: 0.25rem;
}

.hero {
    background: url("../img/bg-hero-fe.jpg") no-repeat;
    background-color: #191c1e;
    background-size: cover;
    padding: 0;
    background-position: bottom center;
}

.logo {
    width: 202px;
}

.card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 20px 40px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.6) inset;
    backdrop-filter: blur(6px);
}
.card-img img {
    width: 100%;
    border-radius: 14px;
    background: linear-gradient(135deg, #e9edf7, #f6f8fc);
    object-fit: cover;
}
.card-testimonial {
    position: relative;
    padding: 36px 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}
.card-testimonial::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 20%,
        rgba(91, 108, 255, 0.12),
        transparent 60%
    );
    pointer-events: none;
}
.quote-bg {
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 180px;
    font-family: serif;
    line-height: 1;
    color: rgba(91, 108, 255, 0.12);
    pointer-events: none;
    user-select: none;
}

.faq-item {
    padding: 36px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.faq-item:last-of-type {
    border-bottom: 0;
}
.faq-question {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #0b0f18;
    margin-bottom: 20px;
}
.faq-label {
    display: inline-block;
    margin-right: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #5b6cff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.faq-answer p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.faq-answer p strong {
    font-weight: 600;
}

.orig-price {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    color: #fff;
}
.price-strike {
    font-size: 1.875rem;
    font-weight: 600;
    position: relative;
    padding: 0 0.625rem;
}
.price-strike span {
    font-size: 1.25rem;
    font-weight: 400;
}
.price-strike img {
    box-shadow: none;
    border: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    width: 100%;
}
.new-price {
    text-align: center;
    font-size: 1.25rem;
    border-radius: 6px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #888cd440;
}

.section-reference p {
    word-break: break-all;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.section-reference .d-flex p:first-of-type {
    width: 34px;
}
.section-reference .d-flex p:last-of-type {
    flex: 1;
}

.bg-alt {
    background-color: #f7f9fd;
    background-image:
        linear-gradient(rgba(11, 15, 24, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 15, 24, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
}
.bg-primary {
    background-color: #ffd16d !important;
    color: #664d18;
}
.bg-highlight {
    background-color: #070a0f;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    color: #e6e9f0;
}
.bg-cta {
    position: relative;
    background-color: #060a12;
    background-image: repeating-radial-gradient(
        circle at 50% 50%,
        rgba(91, 108, 255, 0.06) 0px,
        rgba(91, 108, 255, 0.06) 1px,
        transparent 2px,
        transparent 10px
    );
    color: #e6e9f0;
}

.hr-custom {
    border: none;
    height: 1px;
    margin: 64px 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(15, 23, 42, 0.18),
        transparent
    );
}
.hr-custom-primary {
    width: 100%;
    height: 1px;
    margin: 5rem 0;
    background: linear-gradient(
        to right,
        transparent,
        rgba(91, 108, 255, 0.55),
        transparent
    );
    box-shadow: 0 0 14px rgba(91, 108, 255, 0.35);
}

.product-default {
    filter: brightness(0) saturate(100%) invert(95%) sepia(2%) saturate(5925%)
        hue-rotate(169deg) brightness(91%) contrast(106%);
}

.disclaimer-wrap {
    background-color: #fff;
    border: 1px solid #18231e;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    position: relative;
}
.disclaimer-wrap p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.title-disclaimer {
    display: inline-block;
    position: absolute;
    background-color: #fff;
    padding: 0 1rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -15px;
    width: 140px;
    text-align: center;
}

footer {
    background-color: #070a0f;
    color: #fff;
    font-size: 0.875rem;
}
footer .fw-700 {
    font-weight: 400 !important;
}
footer a {
    color: #fff;
}

/* Pitchplus classes */
.pitchplus p {
    margin-bottom: 2rem;
}
.btn-addtoorder {
    background: #ffc107;
    color: #232323;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 15px;
    border: 5px solid #f1782f;
    padding: 10px;
}
.btn-addtoorder:hover,
.btn-addtoorder:focus {
    background: #ffcc33 !important;
    border: 5px solid #f1782f !important;
    color: #232323;
}
.btn-addtoorder small {
    display: block;
    color: #232323;
    font-size: 1.2rem;
}

.btn-no-thankyou {
    background: #ffc107;
    color: #232323;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 10px;
    border: 2px solid #f1782f;
    padding: 10px 35px;
}
.btn-no-thankyou:hover,
.btn-no-thankyou:focus {
    background: #ffcc33 !important;
    border: 2px solid #f1782f !important;
    color: #232323;
}

/* Helper classes */
.btn {
    border: 0;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0.75rem 3rem;
    border-radius: 6px;
}
.btn-primary {
    background-color: #21aa4b;
}
.btn-primary:hover {
    background-color: #1f9d45;
}
.btn-icon-horizontally {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.text-primary {
    color: #3dd6c6 !important;
}
.text-secondary {
    color: #d4af37 !important;
}
.text-danger {
    color: #cb2e44 !important;
}
.text-primary-alt {
    color: #a0e4c5 !important;
}
.text-highlight {
    margin-left: -1rem;
    color: #222;
}
.text-highlight span {
    border-radius: 6px;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(91, 108, 255, 0.25) 55%
    );
    padding: 0.5rem 1rem;
    line-height: normal;
}
.bg-ltcream {
    background-color: #fffdf8;
}
.bg-ltgray {
    background-color: #f8f7f9;
}
.bg-ltblue {
    background-color: #fbfcfd;
}
.lh-normal {
    line-height: normal !important;
}
.lh-1 {
    line-height: 1.2 !important;
}
.lh-2 {
    line-height: 1.4 !important;
}
.fs-14 {
    font-size: 0.875rem;
}
.fs-xs {
    font-size: 0.9rem;
}
.fs-default {
    font-size: 1rem;
}
.fs-sm {
    font-size: 1.2rem !important;
}
.fs-md {
    font-size: 1.8rem;
}
.fs-18 {
    font-size: 1.125rem !important;
}
.fs-20 {
    font-size: 1.25rem;
}
.fs-22 {
    font-size: 1.375rem;
}
.fs-24 {
    font-size: 1.5rem;
}
.fs-28 {
    font-size: 1.75rem;
}
.fs-30 {
    font-size: 1.875rem;
}
.fs-32 {
    font-size: 2rem;
}
.fs-36 {
    font-size: 2.25rem;
}
.fs-40 {
    font-size: 2.6rem;
}
.fs-50 {
    font-size: 3.125rem;
}
.fs-60 {
    font-size: 3.75rem;
}
.fw-700 {
    font-weight: 700;
}
.fw-600 {
    font-weight: 600;
}
.fw-500 {
    font-weight: 500;
}
.fw-400 {
    font-weight: 400;
}
.fw-300 {
    font-weight: 300;
}
.mb-6 {
    margin-bottom: 4rem !important;
}
.mb-7 {
    margin-bottom: 5rem !important;
}
.mb-8 {
    margin-bottom: 6rem !important;
}
.mb-10 {
    margin-bottom: 8rem !important;
}
.mb-12 {
    margin-bottom: 10rem !important;
}
.mb-16 {
    margin-bottom: 14rem !important;
}
.mt-6 {
    margin-top: 4rem;
}
.mt-7 {
    margin-top: 5rem;
}
.w-40 {
    width: 40%;
}
.w-60 {
    width: 60%;
}
.w-70 {
    width: 70%;
}
.w-90 {
    width: 90%;
}
.img-rounded {
    border-radius: 6px;
}
.img-shadow {
    box-shadow: 15px 15px 0 #ccd9d7;
}
.word-break {
    word-break: break-all;
}
.ls-1 {
    letter-spacing: 1px;
}
b {
    font-weight: 600;
}

@media (max-width: 767px) {
    body {
        font-size: 1.375rem;
    }
    section {
        padding: 2rem 0;
    }
    p {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    .hero {
        padding: 3.5rem 0;
    }
    .hero-ty {
        padding: 1rem 0 2.5rem 0;
    }
    .logo {
        width: 150px;
    }
    .fs-default {
        font-size: 0.875rem;
    }
    .fs-14 {
        font-size: 0.75rem;
    }
    .fs-18,
    .fs-20 {
        font-size: 1rem !important;
    }
    .fs-22 {
        font-size: 1.1rem;
    }
    .fs-24 {
        font-size: 1.125rem;
    }
    .fs-28 {
        font-size: 1.3rem;
    }
    .fs-30 {
        font-size: 1.4rem;
    }
    .fs-32 {
        font-size: 1.45rem;
    }
    .fs-40,
    .fs-36 {
        font-size: 1.5rem !important;
    }
    .fs-50 {
        font-size: 1.75rem;
    }
    .fs-60 {
        font-size: 2.25rem;
    }
    .mb-5 {
        margin-bottom: 1.5rem !important;
    }
    .mb-6 {
        margin-bottom: 2rem !important;
    }
    .mb-7 {
        margin-bottom: 2.5rem !important;
    }
    .mb-8 {
        margin-bottom: 3rem !important;
    }
    .mb-10 {
        margin-bottom: 4.5rem !important;
    }
    .mb-16 {
        margin-bottom: 8rem !important;
    }
    .text-highlight {
        margin-left: 0;
    }
    .text-highlight > span {
        padding: 5px 0;
        line-height: 1.8em;
    }
    .no-xs-br br {
        display: none;
    }
    .disclaimer-wrap p {
        font-size: 0.75rem;
    }
    footer p {
        font-size: 0.65rem;
    }
    .w-xs-50 {
        width: 50% !important;
    }
    .w-xs-60 {
        width: 60% !important;
    }
    .w-xs-75 {
        width: 75% !important;
    }
    .hero-ty,
    .hero {
        background-position-x: center;
    }
    .hero-badge {
        padding: 0.5rem 2rem;
    }
    .bg-highlight {
        padding: 3rem 0;
    }
}
