.clifton-hero-content {
    position: absolute;
    z-index: 20;

    left: clamp(40px, 5vw, 80px);

    /* baja el contenido para dejar espacio al logo */
    top: 130px;

    max-width: 620px;
    color: #fff;
}

.hero-eyebrow {
    font-size: clamp(22px, 1.8vw, 30px);
    font-weight: 300;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 15px;
}

.clifton-hero-content h1 {
    margin: 0;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
}

.clifton-hero-content h1 span {
    display: block;
    margin-top: 10px;
    color: #62D8FC;
}

.clifton-hero-content p {
    margin-top: 18px;
    margin-bottom: 35px;

    font-size: clamp(24px, 1.7vw, 34px);
    font-weight: 300;
    color: rgba(255, 255, 255, .92);
}

.hero-clifton-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #62D8FC;
    color: #124286 !important;

    padding: 18px 34px;

    border-radius: 30px;

    font-size: 18px;
    font-weight: 700;

    text-decoration: none !important;

    transition: .25s ease;
}

.hero-clifton-btn:hover {
    background: #ffffff;
    color: #124286 !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {

    .clifton-hero-content {

        position: absolute;

        left: 24px;
        right: 24px;

        top: auto;
        bottom: 90px;

        max-width: none;
    }

    .hero-eyebrow {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .clifton-hero-content h1 {
        font-size: 42px;
        line-height: 1.05;
    }

    .clifton-hero-content p {
        font-size: 20px;
        margin-top: 12px;
        margin-bottom: 22px;
    }

    .hero-clifton-btn {
        width: 100%;
        max-width: 340px;
        padding: 16px 20px;
        font-size: 16px;
    }
}



/* =========================================
		OPENING SECTION
		========================================= */

.td-opening {
    padding: 80px 0;
    background: #f8fbff;
}

.td-opening__box {
    display: flex;
    gap: 40px;
    align-items: center;
}

.td-opening__left {
    flex: 1;
}

.td-opening__right {
    width: 350px;
    display: grid;
    gap: 18px;
}

.td-opening__title {
    font-size: 42px;
    font-weight: 700;
    color: #124286;
    margin-bottom: 20px;
    line-height: 1.2;
}

.td-opening__left p {

    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 18px;
}

.td-opening__card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(18, 66, 134, .08);
    transition: .3s;
}

.td-opening__card:hover {
    transform: translateY(-5px);
}

.td-opening__card i {
    font-size: 30px;
    color: #62D8FC;
    margin-bottom: 15px;
}

.td-opening__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #124286;
    margin-bottom: 8px;
}

.td-opening__card p {
    margin: 0;

}


/* =========================================
		COMMUNITY SECTION
		========================================= */

.td-community {
    padding: 90px 0;
    background: #fff;
}

.td-community h2 {
    color: #124286;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.td-community p {

    line-height: 1.9;

    margin-bottom: 20px;
}


/* =========================================
		VALUES SECTION
		========================================= */

.td-values {
    padding: 90px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8fbff 100%);
}

.td-values h2 {
    color: #124286;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.td-values .text-center p {
    max-width: 700px;
    margin: auto;

}

.td-value-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    height: 100%;
    text-align: center;
    box-shadow: 0 10px 35px rgba(18, 66, 134, .08);
    transition: .3s;
}

.td-value-card:hover {
    transform: translateY(-8px);
}

.td-value-card i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: rgba(98, 216, 252, .15);
    color: #124286;
    font-size: 30px;
    margin-bottom: 20px;
}

.td-value-card h3 {
    font-size: 22px;
    color: #124286;
    margin-bottom: 15px;
    font-weight: 700;
}

.td-value-card p {

    line-height: 1.8;
    margin-bottom: 0;
}


/* =========================================
		KICKER
		========================================= */

.td-kicker {
    display: inline-block;
    background: rgba(98, 216, 252, .15);
    color: #124286;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: .8px;
}


/* =========================================
		RESPONSIVE
		========================================= */

@media (max-width:991px) {

    .td-opening__box {
        flex-direction: column;
    }

    .td-opening__right {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .td-opening__title,
    .td-community h2,
    .td-values h2 {
        font-size: 32px;
    }
}

@media (max-width:767px) {

    .td-opening,
    .td-community,
    .td-values {
        padding: 60px 0;
    }

    .td-opening__right {
        grid-template-columns: 1fr;
    }

    .td-opening__title,
    .td-community h2,
    .td-values h2 {
        font-size: 28px;
    }

    .td-community p,
    .td-opening__left p {
        font-size: 16px;
    }

    .td-value-card {
        margin-bottom: 20px;
    }
}


/* =========================================
		CLIFTON INTRO SECTION
		========================================= */

.department-section.style-two {
    background: #ffffff;
}

.department-section.style-two .sec-title {
    text-align: center;
}

.department-section.style-two .td-banner__title {
    color: #124286;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.department-section.style-two .text {


    line-height: 1.9;
    margin-bottom: 18px;
}

.department-section.style-two .text strong {
    color: #124286;
    font-weight: 700;
}

.department-section.style-two .btns-box {
    margin-top: 28px;
}


/* =========================================
		CLIFTON BANNER SECTION
		========================================= */

.td-banner {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.td-banner__container {
    max-width: 1200px;
    width: 92%;
    margin: 0 auto;
}

.td-banner__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
}

.td-banner__left {
    background: #ffffff;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 14px 45px rgba(18, 66, 134, .08);
}

.td-banner__title {
    color: #124286;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.td-banner__sub {


    line-height: 1.8;
    margin-bottom: 28px;
}

.td-banner__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.td-banner__list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.td-banner__list li strong {
    color: #124286;
}

.td-bullet {
    min-width: 28px;
    width: 28px;
    height: 28px;
    background: rgba(98, 216, 252, .18);
    color: #124286;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    font-size: 13px;
}

.td-banner__photoWrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 45px rgba(18, 66, 134, .12);
}

.td-banner__photoWrap::before {
    content: "Opening July 6";
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: #124286;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
}

.td-banner__photo {
    display: block;
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}


/* =========================================
		CLIFTON HIGHLIGHTS SECTION
		========================================= */

.td-location-highlights {
    padding: 90px 0;
    background: #ffffff;
}

.td-wh-header {

    margin: 0 auto 45px;
    text-align: center;
}

.td-wh-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(98, 216, 252, .16);
    color: #124286;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.td-wh-kicker .dot {
    width: 8px;
    height: 8px;
    background: #62D8FC;
    border-radius: 50%;
    display: inline-block;
}

.td-wh-title {
    color: #124286;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.td-wh-sub {


    line-height: 1.8;
    margin-bottom: 0;
}

.td-location-highlights__row {
    row-gap: 24px;
}

.td-wh-card {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 12px 35px rgba(18, 66, 134, .08);
    border: 1px solid rgba(18, 66, 134, .06);
    transition: .3s ease;
}

.td-wh-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(18, 66, 134, .12);
}

.td-wh__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(98, 216, 252, .16);
    color: #124286;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.td-wh__title {
    color: #124286;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.td-wh__text {

    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 0;
}

.td-wh-note {
    margin: 38px auto 0;
    max-width: 760px;
    background: #f8fbff;
    border-left: 4px solid #62D8FC;
    border-radius: 14px;
    padding: 18px 22px;

    text-align: center;
    font-size: 15.5px;
}


/* =========================================
		RESPONSIVE
		========================================= */

@media (max-width: 991px) {

    .department-section.style-two .td-banner__title,
    .td-banner__title,
    .td-wh-title {
        font-size: 32px;
    }

    .td-banner {
        padding: 70px 0;
    }

    .td-banner__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .td-banner__left {
        padding: 35px;
    }

    .td-banner__photo {
        min-height: 420px;
    }

    .td-location-highlights {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {

    .department-section.style-two {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .department-section.style-two .td-banner__title,
    .td-banner__title,
    .td-wh-title {
        font-size: 28px;
    }

    .department-section.style-two .text,
    .td-banner__sub,
    .td-wh-sub {
        font-size: 16px;
        line-height: 1.75;
    }

    .td-banner {
        padding: 55px 0;
    }

    .td-banner__left {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .td-banner__list li {
        font-size: 15.5px;
        gap: 12px;
    }

    .td-banner__photo {
        min-height: 330px;
    }

    .td-banner__photoWrap::before {
        top: 14px;
        left: 14px;
        font-size: 12px;
        padding: 8px 14px;
    }

    .td-location-highlights {
        padding: 55px 0;
    }

    .td-wh-card {
        padding: 26px 22px;
    }

    .td-wh-note {
        text-align: left;
    }
}

.td-care-paths {
    padding: 90px 0;
    background: #fff;
}

.td-care-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;

    border: 1px solid rgba(18, 66, 134, .08);

    box-shadow: 0 10px 30px rgba(18, 66, 134, .06);

    transition: .3s ease;
}

.td-care-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(18, 66, 134, .12);
}

.td-care-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(98, 216, 252, .15);

    color: #124286;

    font-size: 42px;
}

.td-care-card h3 {
    color: #124286;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.td-care-card p {

    line-height: 1.8;
    margin-bottom: 0;
}

@media(max-width:767px) {

    .td-care-paths {
        padding: 60px 0;
    }

    .td-care-card {
        padding: 28px 22px;
    }

    .td-care-card h3 {
        font-size: 21px;
    }

}

/* =========================================
		PAYMENT CONFIDENCE SECTION
		========================================= */

.td-payment-confidence {
    padding: 90px 0;
    background: #f8fbff;
}

.td-payment-confidence .td-title {
    color: #124286;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
}

.td-payment-confidence .td-sub {

    margin: auto;

    line-height: 1.9;
}

.td-confidence-card {

    height: 100%;

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    box-shadow: 0 12px 35px rgba(18, 66, 134, .08);

    border: 1px solid rgba(18, 66, 134, .05);

    transition: .3s ease;
}

.td-confidence-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(18, 66, 134, .12);
}

.td-confidence-icon {

    width: 85px;
    height: 85px;

    margin: 0 auto 22px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(98, 216, 252, .15);

    color: #124286;

    font-size: 32px;
}

.td-confidence-card h3 {

    color: #124286;

    font-size: 24px;

    font-weight: 800;

    margin-bottom: 15px;
}

.td-confidence-card p {



    line-height: 1.8;

    margin-bottom: 22px;
}

.td-confidence-link {

    color: #124286;

    font-weight: 700;

    text-decoration: none;
}

.td-confidence-link:hover {
    color: #0f356c;
}

.td-payment-footer {

    margin-top: 30px;

    text-align: center;
}

.td-payment-footer p {



    font-size: 15px;

    margin-bottom: 0;
}

@media(max-width:991px) {

    .td-payment-confidence {
        padding: 70px 0;
    }

    .td-payment-confidence .td-title {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .td-payment-confidence {
        padding: 55px 0;
    }

    .td-payment-confidence .td-title {
        font-size: 28px;
    }

    .td-confidence-card {
        padding: 28px 22px;
    }

}

.td-location-info {
    padding: 90px 0;
    background: #ffffff;
}

.td-location-card {

    height: 100%;

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    box-shadow: 0 12px 35px rgba(18, 66, 134, .08);

    border: 1px solid rgba(18, 66, 134, .05);

    transition: .3s ease;
}

.td-location-card:hover {
    transform: translateY(-8px);
}

.td-location-icon {

    width: 85px;
    height: 85px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: rgba(98, 216, 252, .15);

    color: #124286;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
}

.td-location-card h3 {

    color: #124286;

    font-size: 24px;

    font-weight: 800;

    margin-bottom: 15px;
}

.td-location-card p {



    line-height: 1.8;

    margin-bottom: 15px;
}

.td-location-card strong {

    color: #124286;

    font-size: 18px;

    font-weight: 700;
}

.td-location-link {

    color: #124286;

    font-weight: 700;

    text-decoration: none;
}

.td-location-link:hover {
    color: #0f356c;
}

@media(max-width:767px) {

    .td-location-info {
        padding: 55px 0;
    }

    .td-location-card {
        padding: 28px 22px;
    }

}

.td-location-btn {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 10px;

    padding: 12px 22px;

    background: #124286;
    color: #fff;

    border-radius: 50px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

.td-location-btn:hover {

    background: #0d3268;
    color: #fff;

    transform: translateY(-2px);
}

.td-location-btn i {
    font-size: 14px;
}



.td-clifton-promo {
    padding: 90px 0;
    background: #f8fbff;
}

.td-clifton-promo__wrap {
    position: relative;
    max-width: 1300px;
    width: 92%;
    margin: 0 auto;
    min-height: 720px;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(18, 66, 134, .12);
}

.td-clifton-promo__content {
    position: relative;
    z-index: 3;
    width: 42%;
    min-height: 720px;
    padding: 45px 42px;
    background: #ffffff;
    border-radius: 0 80px 80px 0;
    box-shadow: 12px 0 35px rgba(18, 66, 134, .08);
}

.td-clifton-logo {
    text-align: center;
    margin-bottom: 18px;
}

.td-clifton-logo img {
    max-width: 155px;
    display: block;
    margin: 0 auto 4px;
}

.td-clifton-logo span {
    display: block;
    color: #62D8FC;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 8px;
}

.td-clifton-promo__content h2 {
    color: #124286;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
    text-align: center;
    margin-bottom: 12px;
}

.td-clifton-promo__content h2 span {
    color: #62D8FC;
}

.td-clifton-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #9c7aa6;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 20px;
    margin-bottom: 20px;
}

.td-clifton-date:before,
.td-clifton-date:after {
    content: "";
    width: 70px;
    height: 1px;
    background: #c8b6ce;
}

.td-clifton-promo__content p {
    color: #172b4d;
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 22px;
}

.td-clifton-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.td-clifton-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #172b4d;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 13px;
}

.td-clifton-list i {
    min-width: 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #124286;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-top: 1px;
}

.td-clifton-list strong {
    color: #124286;
}

.td-clifton-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #124286;
    color: #fff !important;
    border-radius: 50px;
    padding: 15px 28px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(18, 66, 134, .22);
    transition: .3s ease;
}

.td-clifton-btn:hover {
    background: #0d3268;
    color: #fff !important;
    transform: translateY(-2px);
}

.td-clifton-promo__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 66%;
    height: 100%;
    z-index: 1;
}

.td-clifton-promo__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.td-clifton-promo__image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));
}

.td-clifton-info {
    position: absolute;
    z-index: 4;
    right: 30px;
    bottom: 72px;
    width: 60%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, .95);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(18, 66, 134, .16);
    overflow: hidden;
}

.td-clifton-info__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 22px;
    border-right: 1px solid rgba(18, 66, 134, .12);
}

.td-clifton-info__item:last-child {
    border-right: 0;
}

.td-clifton-info__item i {
    min-width: 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #62D8FC;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.td-clifton-info__item strong {
    display: block;
    color: #62D8FC;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 4px;
}

.td-clifton-info__item span {
    display: block;
    color: #172b4d;
    font-size: 14px;
    line-height: 1.45;
}

.td-clifton-bottom {
    position: absolute;
    z-index: 4;
    left: 42%;
    right: 0;
    bottom: 0;
    background: #124286;
    color: #fff;
    padding: 22px 28px;
    display: flex;
    justify-content: center;
    gap: 45px;
    font-size: 16px;
}

.td-clifton-bottom span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.td-clifton-bottom i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #62D8FC;
    color: #124286;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media(max-width:991px) {

    .td-clifton-promo__wrap {
        min-height: auto;
    }

    .td-clifton-promo__content {
        width: 100%;
        min-height: auto;
        border-radius: 0;
        padding: 38px 28px;
    }

    .td-clifton-promo__image {
        position: relative;
        width: 100%;
        height: 420px;
    }

    .td-clifton-info {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 0;
    }

    .td-clifton-info__item {
        border-right: 0;
        border-bottom: 1px solid rgba(18, 66, 134, .12);
    }

    .td-clifton-bottom {
        position: relative;
        left: auto;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }

}

@media(max-width:767px) {

    .td-clifton-promo {
        padding: 55px 0;
    }

    .td-clifton-promo__wrap {
        width: 94%;
        border-radius: 22px;
    }

    .td-clifton-promo__content h2 {
        font-size: 32px;
    }

    .td-clifton-date {
        font-size: 16px;
    }

    .td-clifton-date:before,
    .td-clifton-date:after {
        width: 45px;
    }

    .td-clifton-btn {
        width: 100%;
    }

    .td-clifton-promo__image {
        height: 360px;
    }

}