/* ==========================================================================
   Secure Score Page – Redesign
   Prefix: ss-  (avoids conflicts with existing .secure-score-* classes)
   ========================================================================== */

/* ---------- General / Shared ---------- */

.ss-container {
    max-width: 1430px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* ======================================================================
   Section 1 – Hero
   ====================================================================== */

.ss-hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.ss-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.ss-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.ss-hero .ss-container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.ss-hero__title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 96px;
    line-height: 1.1;
    color: #fff;
    max-width: 1400px;
    margin: 0 auto 35px;
}

.ss-hero__desc {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: #fff;
    max-width: 960px;
    margin: 0 auto 50px;
}

.ss-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 50px;
    padding: 0 40px;
    border-radius: 30px;
    background: #ED5A00;
    color: #fff;
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 18px;
    text-decoration: none;
}

.ss-hero__btn:hover {
    background: #ED5A00;
    color: #fff;
}

/* ======================================================================
   Section 2 – Introduction
   ====================================================================== */

.ss-intro {
    padding: 80px 0 0;
    background: #fff;
    position: relative;
}

.ss-intro::before {
    position: absolute;
    content: '';
    background-image: url('../images/secure-score-map1.webp');
    width: 100%;
    height: 818px;
    background-size: auto 818px;
    background-position: center top;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.ss-intro .ss-container {
    position: relative;
    z-index: 1;
}

.ss-intro__row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.ss-intro__content {
    flex: 1 1 50%;
}

.ss-intro__content p {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
    color: #1B1616;
    text-align: justify;
    margin-bottom: 20px;
}

.ss-intro__content p:last-child {
    margin-bottom: 0;
}

.ss-intro__image {
    flex: 1 1 50%;
    text-align: center;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-intro__image img {
    max-width: 100%;
    max-height: 580px;
    height: auto;
    object-fit: contain;
}

/* Stat bar */
.ss-intro__stat {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-top: -90px;
}

.ss-intro__stat-number {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 120px;
    line-height: 1;
    color: #1B1616;
    white-space: nowrap;
}

.ss-intro__stat-label {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #1B1616;
    padding-bottom: 0.55em;
}

.ss-intro__gradient-bar {
    height: 120px;
    margin-top: 24px;
    background: linear-gradient(to right, #1b1616, #FF4B00);
    border-radius: 4px;
}

/* ======================================================================
   Section 3 – Slider
   ====================================================================== */

.ss-slider {
    padding: 180px 0 0;
    background: #fff;
}

.ss-slider__title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 42px;
    line-height: 1.15;
    color: #FF4B00;
    margin-bottom: 20px;
    min-height: 2.3em;
}

/* Force equal-height items in Owl Carousel */
.ss-slider .owl-stage {
    display: flex !important;
}

.ss-slider .owl-item {
    display: flex !important;
    float: none !important;
}

.ss-slide {
    padding: 0 10px;
    display: flex !important;
    flex-direction: column;
    width: 100%;
}

.ss-slide__number {
    display: none;
}

.ss-slide__text {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #1B1616;
    margin-bottom: 30px;
    column-count: 2;
    column-gap: 30px;
    column-fill: auto;
    height: 320px;
    overflow: hidden;
}

.ss-slide__text p {
    margin-bottom: 15px;
    break-inside: avoid;
}

.ss-slide__text p:last-child {
    margin-bottom: 0;
}

.ss-slide__text strong,
.ss-slide__text b {
    font-family: 'SaansTRIAL-Medium', sans-serif;
}

.ss-slide__image {
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    height: 250px;
    margin-top: auto;
}

.ss-slide__image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

/* Owl Carousel overrides */
.ss-slider .owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.ss-slider .owl-carousel .owl-nav button.owl-prev,
.ss-slider .owl-carousel .owl-nav button.owl-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #EBEBEB !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    padding: 0 !important;
    line-height: 1;
}

.ss-slider .owl-carousel .owl-nav button.owl-prev:hover,
.ss-slider .owl-carousel .owl-nav button.owl-next:hover {
    background: #ddd !important;
}

.ss-slider .owl-carousel .owl-nav button.disabled {
    opacity: 0.4;
    cursor: default;
}

.ss-slider .owl-carousel .owl-nav button.disabled:hover {
    background: #EBEBEB !important;
}

.ss-slider .owl-carousel .owl-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #EBEBEB !important;
    border-radius: 9999px;
    padding: 8px 14px;
    margin: 0;
    cursor: pointer;
}

.ss-slider .owl-carousel .owl-dot {
    background: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.ss-slider .owl-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    display: block;
    margin: 0;
    transition: background 0.3s ease;
}

.ss-slider .owl-carousel .owl-dot.active span,
.ss-slider .owl-carousel .owl-dot.active:hover span,
.ss-slider .owl-carousel .owl-dot.active:focus span {
    background: #1B1616;
}

.ss-slider .owl-carousel .owl-dot:hover span,
.ss-slider .owl-carousel .owl-dot:focus span {
    background: #999;
}

/* ── Slider: show/hide by viewport ── */
@media (min-width: 768px) { .ss-slider__mobile { display: none; } }
@media (max-width: 767px) { .ss-slider__desktop { display: none; } }

/* ── Desktop/tablet stacked grid layout ── */
.ss-slide-row {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 0;
}

.ss-slide-row--rev {
    flex-direction: row-reverse;
}

.ss-slide-row__text {
    width: 53.3%;
    padding-right: 92px;
}

.ss-slide-row--rev .ss-slide-row__text {
    padding-right: 0;
    padding-left: 92px;
}

.ss-slide-row__image {
    width: 46.7%;
}

.ss-slide-row__image img {
    width: 100%;
    border-radius: 16px;
}

.ss-slide-row__title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 42px;
    color: #FF4B00;
    line-height: 1.15;
    margin-bottom: 24px;
}

.ss-slide-row__body {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #1B1616;
}

/* ======================================================================
   Section 4 – How VirtuWorks Can Help
   ====================================================================== */

.ss-help {
    padding: 40px 0 100px;
    background: #fff;
    position: relative;
}

.ss-help::before {
    position: absolute;
    content: '';
    background-image: url('../images/secure-score-map1.webp');
    width: 100%;
    height: 818px;
    background-size: auto 818px;
    background-position: center top;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.ss-help .ss-container {
    position: relative;
    z-index: 1;
}

.ss-help__heading {
    margin-bottom: 25px;
    text-align: left;
    max-width: 1000px;
}

.ss-help__title-orange {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 60px;
    line-height: 1.05;
    color: #FF4B00;
}

.ss-help__title-black {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 60px;
    line-height: 1.05;
    color: #151111;
}


/* Tab content (below tabs) */
.ss-help__tab-content {
    margin-top: 0;
}

.ss-help__content-intro {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 20px;
    line-height: 1.65;
    color: #1B1616;
    margin-bottom: 32px;
}

.ss-help__content-intro strong,
.ss-help__content-intro b,
.ss-help__content-bottom strong,
.ss-help__content-bottom b {
    font-family: 'SaansTRIAL-Medium', sans-serif;
}

.ss-help__content-intro p,
.ss-help__content-bottom p {
    margin-bottom: 15px;
}

.ss-help__content-intro p:last-child,
.ss-help__content-bottom p:last-child {
    margin-bottom: 0;
}

.ss-help__marketing-text {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 50px;
}

.ss-help__marketing-black {
    color: #151111;
}

.ss-help__marketing-orange {
    color: #F49B49;
}

.ss-help__gallery-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}


.ss-help__gallery {
    display: flex;
    gap: 20px;
    flex: 1 1 auto;
}

.ss-help__gallery-item {
    flex: 1;
    min-width: 0;
}

.ss-help__gallery-title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 17px;
    color: #888;
    margin-bottom: 10px;
}

.ss-help__gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.ss-help__content-bottom {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 20px;
    line-height: 1.65;
    color: #1B1616;
}

/* ======================================================================
   Section 4b – Testimonials
   ====================================================================== */

.ss-testimonials {
    padding: 60px 0 80px;
    background: #fff;
}

.ss-testimonials__title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 72px;
    line-height: 1.1;
    color: #FF4B00;
    text-align: center;
    margin-bottom: 40px;
}

.ss-testimonials__heading {
    text-align: center;
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 18px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #C53E00;
    margin-bottom: 36px;
}

.ss-testimonials__grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.ss-testimonials__card {
    flex: 1 1 300px;
    max-width: 380px;
    background: #1c1616;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.ss-testimonials__stars {
    color: #FF4B00;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.ss-testimonials__quote {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
    font-style: italic;
    flex: 1;
    margin-bottom: 18px;
}

.ss-testimonials__author {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px;
}

.ss-testimonials__role {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 991px) {
    .ss-testimonials__title { font-size: 48px; }
}

@media (max-width: 767px) {
    .ss-testimonials__title { font-size: 34px; }
    .ss-testimonials__grid { flex-direction: column; align-items: center; }
    .ss-testimonials__card { max-width: 100%; }
}

/* ======================================================================
   Section 5 – Stats
   ====================================================================== */

.ss-stats {
    padding: 80px 0 130px;
    background-color: #1C1616;
}

.ss-stats__text {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 28px;
    line-height: 2.3;
    color: #fff;
    margin-bottom: 60px;
}

.ss-stats__text strong,
.ss-stats__text b {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    color: #FF4B00;
    font-weight: normal;
}

.ss-stats__text p {
    margin-bottom: 0;
}

.ss-stats__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 220px;
}

.ss-stats__circle {
    flex-shrink: 0;
}

.ss-stats__circle img {
    width: 500px;
    height: auto;
    display: block;
}

.ss-stats__items {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.ss-stats__item {
    display: flex;
    align-items: center;
    gap: 28px;
}

.ss-stats__item-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
}

.ss-stats__item-label {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 52px;
    color: #fff;
}

/* ======================================================================
   Section 6 – Schedule + Certifications
   ====================================================================== */

.ss-schedule {
    padding: 80px 0 70px;
    background-color: #231D1E;
    position: relative;
    z-index: 1;
    border-radius: 55px 55px 0 0;
    margin-top: -60px;
}

.ss-schedule__title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 70px;
    line-height: 1.05;
    color: #F4893A;
    text-align: left;
    margin-bottom: 20px;
}

.ss-schedule__desc {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 20px;
    line-height: 1.65;
    color: #fff;
    text-align: left;
    max-width: 1100px;
    margin: 0 0 50px;
}

/* ---------- CF7 Form Card ---------- */

.ss-schedule__form-card {
    background: #efefef;
    border-radius: 20px;
    padding: 40px 50px;
    margin: 0 0 16px;
}

.ss-schedule__form-card .wpcf7-form br {
    display: none;
}

.ss-schedule__form-card .wpcf7-form p {
    margin: 0 0 16px !important;
}

.ss-schedule__form-card .wpcf7-form p:last-of-type {
    margin-bottom: 0 !important;
}

/* Field icons via data-name on wpcf7-form-control-wrap */

.ss-schedule__form-card .wpcf7-form .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

.ss-schedule__form-card .wpcf7-form .wpcf7-form-control-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.ss-schedule__form-card .wpcf7-form-control-wrap[data-name="your-name"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3Cpath d='M4 20c0-4 3.6-7 8-7s8 3 8 7'/%3E%3C/svg%3E");
}

.ss-schedule__form-card .wpcf7-form-control-wrap[data-name="your-email"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M2 7l10 7 10-7'/%3E%3C/svg%3E");
}

.ss-schedule__form-card .wpcf7-form-control-wrap[data-name="company-name"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 21h18'/%3E%3Cpath d='M5 21V7l7-4 7 4v14'/%3E%3Cpath d='M9 21v-6h6v6'/%3E%3C/svg%3E");
}

.ss-schedule__form-card .wpcf7-form-control-wrap[data-name="phone"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 11a19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 3.6 2H6.6a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L7.49 9.49a16 16 0 0 0 5.83 5.83l1.85-1.36a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.ss-schedule__form-card .wpcf7-form-control-wrap[data-name="employee"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.ss-schedule__form-card .wpcf7-form-control-wrap[data-name="your-message"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E");
    top: 10px;
}

.ss-schedule__form-card .wpcf7-form input[type="text"],
.ss-schedule__form-card .wpcf7-form input[type="email"],
.ss-schedule__form-card .wpcf7-form input[type="tel"],
.ss-schedule__form-card .wpcf7-form input[type="number"],
.ss-schedule__form-card .wpcf7-form input[type="date"],
.ss-schedule__form-card .wpcf7-form textarea,
.ss-schedule__form-card .wpcf7-form select {
    display: block;
    width: 100%;
    padding: 8px 0 8px 28px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #bbb;
    border-radius: 0;
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 16px !important;
    color: #333;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.ss-schedule__form-card .wpcf7-form textarea {
    min-height: 100px;
    resize: vertical;
}

.ss-schedule__form-card .wpcf7-form input[type="text"]:focus,
.ss-schedule__form-card .wpcf7-form input[type="email"]:focus,
.ss-schedule__form-card .wpcf7-form input[type="tel"]:focus,
.ss-schedule__form-card .wpcf7-form input[type="number"]:focus,
.ss-schedule__form-card .wpcf7-form input[type="date"]:focus,
.ss-schedule__form-card .wpcf7-form textarea:focus,
.ss-schedule__form-card .wpcf7-form select:focus {
    border-bottom-color: #FF4B00;
}

.ss-schedule__form-card .wpcf7-form input[type="checkbox"] {
    accent-color: #FF4B00;
}

.ss-schedule__form-card .wpcf7-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 50px;
    padding: 0 32px;
    border: none;
    border-radius: 30px;
    background: #C53E00;
    color: #fff;
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
    text-indent: 0;
    letter-spacing: normal;
    width: auto;
}

.ss-schedule__form-card .wpcf7-form input[type="submit"]:hover {
    background: #a33400;
}

/* ---------- Certifications ---------- */

.ss-certs {
    margin-top: 60px;
}

.ss-certs__title {
    font-family: 'SaansTRIAL-Medium', sans-serif;
    font-size: 78px;
    line-height: 1.05;
    color: #F4893A;
    text-align: left;
    margin-bottom: 20px;
}

.ss-certs__desc {
    font-family: 'SaansTRIAL-Regular', sans-serif;
    font-size: 20px;
    line-height: 1.65;
    color: #fff;
    text-align: left;
    max-width: 850px;
    margin: 0 0 40px;
}

.ss-certs__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
}

.ss-certs__card {
    background: #EDEDED;
    border-radius: 16px;
    width: 300px;
    height: 300px;
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.ss-certs__card:nth-child(2) img {
    filter: invert(1);
}

.ss-certs__card img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.ss-certs__card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* ======================================================================
   Shared background region: schedule section + footer
   Single background so the dot pattern scrolls seamlessly across both
   ====================================================================== */

.ss-bg-region {
    background-color: #231D1E;
    background-image: url('../images/footer-map1.webp');
    background-size: 220%;
    background-position: center 750px;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    border-radius: 55px 55px 0 0;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

/* Children are transparent so the parent background shows through seamlessly */
.ss-bg-region .ss-schedule {
    background: transparent;
    border-radius: 0;
    margin-top: 0;
}

.ss-bg-region .footer {
    background: transparent;
}

/* Remove the original footer dots pseudo-element */
.footer-top-flex::before {
    display: none;
}

/* ---------- content-visibility: skip layout/paint for off-screen sections ---------- */

.ss-intro,
.ss-slider,
.ss-help,
.ss-testimonials,
.ss-stats {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* ======================================================================
   Responsive
   ====================================================================== */

@media (max-width: 1200px) {
    .ss-hero__title {
        font-size: 72px;
    }

    .ss-slider__title,
    .ss-help__title-orange,
    .ss-help__title-black {
        font-size: 50px;
    }

    .ss-schedule__title,
    .ss-certs__title {
        font-size: 44px;
    }

    .ss-intro__stat-number {
        font-size: 90px;
    }

    .ss-intro__stat-label {
        font-size: 28px;
    }

    /* Stats – initial scale-down to prevent overflow */
    .ss-stats__bottom {
        gap: 80px;
    }

    .ss-stats__circle img {
        width: 380px;
    }

    .ss-stats__item-label {
        font-size: 44px;
    }

    .ss-stats__item-icon {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 1120px) {
    .ss-intro__stat {
        margin-top: 20px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}


@media (max-width: 991px) {
    .ss-hero .ss-container {
        padding-top: 80px;
    }

    .ss-intro__row {
        flex-direction: column;
        gap: 20px;
    }

    .ss-intro__content,
    .ss-intro__image {
        flex: 1 1 100%;
    }

    .ss-intro__image {
        min-height: 450px;
    }

    .ss-intro__image img {
        max-height: 450px;
    }

    .ss-intro__gradient-bar {
        height: 75px;
        margin-top: 12px;
    }

    .ss-intro__stat {
        flex-direction: column;
        text-align: center;
        margin-top: 8px;
        gap: 8px;
    }

    .ss-hero__title {
        font-size: 56px;
    }

    .ss-hero__desc {
        font-size: 17px;
    }

    .ss-slider__title,
    .ss-help__title-orange,
    .ss-help__title-black {
        font-size: 40px;
    }

    .ss-schedule__title,
    .ss-certs__title {
        font-size: 40px;
    }

    .ss-schedule__desc {
        font-size: 18px;
    }

    .ss-schedule__form-card {
        padding: 35px 30px;
    }

    .ss-slider__title {
        min-height: 3.6em;
    }

    /* Stats – stack layout for tablet */
    .ss-stats__text {
        font-size: 30px;
        line-height: 2.2;
        margin-bottom: 50px;
    }

    .ss-stats__bottom {
        gap: 40px;
    }

    .ss-stats__circle img {
        width: 260px;
    }

    .ss-stats__item-label {
        font-size: 30px;
    }

    .ss-stats__item-icon {
        width: 56px;
        height: 56px;
    }

    .ss-stats__items {
        gap: 30px;
    }


}

@media (max-width: 767px) {
    .ss-hero .ss-container {
        padding-top: 50px;
    }

    .ss-hero {
        min-height: 80vh;
        padding: 120px 0 60px;
    }

    .ss-intro::before,
    .ss-help::before {
        display: none;
    }

    .ss-hero__title {
        font-size: 40px;
    }

    .ss-hero__desc {
        font-size: 16px;
    }

    .ss-intro {
        padding: 60px 0 0;
    }

    .ss-intro__image {
        min-height: 320px;
    }

    .ss-intro__image img {
        max-height: 320px;
    }

    .ss-intro__stat {
        margin-top: 8px;
    }

    .ss-intro__content p {
        font-size: 16px;
        text-align: left;
    }

    .ss-help__content-intro,
    .ss-help__content-bottom,
    .ss-schedule__desc,
    .ss-certs__desc {
        font-size: 16px;
    }

    .ss-intro__stat-number {
        font-size: 64px;
    }

    .ss-intro__stat-label {
        font-size: 22px;
    }

    .ss-slider {
        padding: 60px 0;
    }

    .ss-slider__title {
        font-size: 30px;
        margin-bottom: 20px;
        min-height: auto;
    }

    .ss-slide__text {
        column-count: 1;
        height: auto;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .ss-slide__image {
        height: 180px;
    }

    .ss-help {
        padding: 60px 0;
    }

    .ss-help__title-orange,
    .ss-help__title-black {
        font-size: 30px;
    }

    .ss-help__tab {
        font-size: 24px;
    }

    .ss-help__tab-marker {
        width: 32px;
        height: 32px;
    }

    .ss-help__marketing-text {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .ss-help__gallery-item {
        display: flex;
        flex-direction: column;
    }

    .ss-help__gallery-item img {
        margin-top: auto;
    }

    .ss-help__gallery-title {
        font-size: 11px;
        margin-bottom: 6px;
    }


    /* Stats – mobile */
    .ss-stats__text {
        font-size: 22px;
        line-height: 2.0;
        margin-bottom: 35px;
    }

    .ss-stats__bottom {
        gap: 20px;
    }

    .ss-stats__circle img {
        width: 180px;
    }

    .ss-stats__item-label {
        font-size: 22px;
    }

    .ss-stats__item-icon {
        width: 44px;
        height: 44px;
    }

    .ss-stats__items {
        gap: 22px;
    }

    .ss-schedule {
        padding: 40px 0 60px;
    }

    .ss-schedule__title {
        font-size: 32px;
        padding-left: 20px;
    }

    .ss-schedule__desc {
        font-size: 18px;
        padding-left: 20px;
    }

    .ss-schedule__form-card {
        padding: 25px 20px;
    }

    .ss-certs__title {
        font-size: 28px;
    }

    .ss-certs__row {
        gap: 15px;
    }

    .ss-certs__card {
        padding: 10px;
    }

    .ss-slider .owl-carousel .owl-nav button.owl-prev,
    .ss-slider .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }


    .ss-bg-region {
        background-image: none;
        content-visibility: auto;
        contain-intrinsic-size: auto 800px;
    }
}

@media (max-width: 550px) {
    .ss-stats__text {
        line-height: 1.8;
    }
}

@media (max-width: 870px) {
    .ss-certs__row {
        justify-content: center;
        gap: 15px;
    }

    .ss-certs__card {
        flex: 0 0 calc(50% - 8px);
        width: calc(50% - 8px);
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 800px) {
    .ss-stats__item {
        gap: 14px;
    }
}

@media (max-width: 345px) {
    .ss-stats__bottom {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 490px) {
    .ss-stats__circle img {
        width: 160px;
    }

    .ss-stats__item-label {
        font-size: 20px;
    }

    .ss-stats__item-icon {
        width: 40px;
        height: 40px;
    }

    .ss-stats__items {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .ss-hero__title {
        font-size: 32px;
    }

    .ss-intro__stat-number {
        font-size: 50px;
    }

    .ss-intro__stat-label {
        font-size: 18px;
    }

    .ss-slider__title {
        font-size: 26px;
    }

    .ss-help__title-orange,
    .ss-help__title-black {
        font-size: 26px;
    }

    .ss-schedule__title,
    .ss-certs__title {
        font-size: 24px;
    }
}