/* ===== ABOUT HERO BANNER ===== */
.about-hero-banner {
    position: relative;
    overflow: hidden;
}

/* Background image */
.about-hero-bg-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Blue overlay — left dark, right lighter */
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(5, 18, 50, 0.97) 0%,
            rgba(5, 18, 50, 0.88) 30%,
            rgba(5, 18, 50, 0.55) 55%,
            rgba(5, 18, 50, 0.15) 100%);
    z-index: 1;
}

/* Content above overlay */
.about-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 0 50px;
}

/* Title */
.about-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-hero-title-gold {
    color: #f5a623;
}

/* Para */
.about-hero-para {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 0;
}

/* ===== RESPONSIVE: ABOUT HERO BANNER ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .about-hero-bg-img {
        height: 560px;
    }

    .about-hero-content {
        padding: 0 30px;
    }

    .why-label {
        font-size: 13px;
        padding: 7px 16px;
    }

    .about-hero-title {
        font-size: 40px;
    }

    .about-hero-para {
        font-size: 15px;
        max-width: 500px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .about-hero-bg-img {
        height: 480px;
    }

    .about-hero-content {
        padding: 0 24px;
    }

    .why-label {
        font-size: 12.5px;
        padding: 7px 14px;
    }

    .about-hero-title {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .about-hero-para {
        font-size: 14.5px;
        max-width: 100%;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .about-hero-bg-img {
        height: 460px;
    }

    .about-hero-content {
        padding: 0 18px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .about-hero-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .about-hero-para {
        font-size: 13.5px;
        line-height: 1.6;
        max-width: 100%;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .about-hero-bg-img {
        height: 420px;
    }

    .about-hero-content {
        padding: 0 14px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .about-hero-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .about-hero-title br {
        display: none;
    }

    .about-hero-para {
        font-size: 14px;
        line-height: 1.55;
        max-width: 100%;
    }
}


/* ===== OUR STORY SECTION ===== */
.our-story-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
}

/* ---- Left Image Block ---- */
.story-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 40px;
    padding-left: 30px;
}

/* Decorative dot grid - top left */
.story-dots-grid {
    position: absolute;
    top: 0;
    left: -50px;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    grid-template-rows: repeat(9, 8px);
    gap: 8px;
    z-index: 1;
}

.story-dots-grid span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

/* Big image */
.story-big-img {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
    position: relative;
    z-index: 1;
}

/* Small overlapping image - left center */
.story-small-img {
    position: absolute;
    top: 60%;
    left: -20px;
    transform: translateY(-50%);
    width: 300px;
    height: 340px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 4px solid #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Bottom-right badge card */
.story-badge-card {
    position: absolute;
    bottom: -30px;
    right: 10px;
    background: #15263e;
    border: 2px solid #868A93;
    border-radius: 12px;
    padding: 10px 22px;
    min-width: 190px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.story-badge-num {
    color: #f5a623;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
}

.story-badge-sub {
    color: #f5a623;
    font-size: 20px;
    font-weight: 600;
    margin-top: 4px;
}

/* ---- Right Content ---- */
.story-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.story-title-gold {
    color: #f5a623;
}

.story-para {
    color: #b0c0d8;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ===== RESPONSIVE: OUR STORY SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .our-story-section {
        padding: 36px 30px;
    }

    .story-img-wrap {
        padding-top: 30px;
        padding-left: 24px;
    }

    .story-big-img {
        height: 540px;
        max-width: 100%;
    }

    .story-small-img {
        width: 260px;
        height: 300px;
        left: -16px;
    }

    .story-badge-card {
        min-width: 170px;
        padding: 10px 18px;
    }

    .story-badge-num {
        font-size: 30px;
    }

    .story-badge-sub {
        font-size: 12.5px;
    }

    .why-label {
        font-size: 13px;
        padding: 7px 16px;
    }

    .story-title {
        font-size: 36px;
    }

    .story-para {
        font-size: 15px;
    }

    .btn-gold {
        font-size: 16px;
        padding: 12px 22px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .our-story-section {
        padding: 32px 20px;
    }

    .story-img-wrap {
        padding-left: 20px;
        margin-top: 40px;
    }

    .story-big-img {
        height: 480px;
        max-width: 100%;
    }

    .story-small-img {
        width: 220px;
        height: 250px;
        left: -10px;
    }

    .story-badge-card {
        min-width: 160px;
        padding: 9px 16px;
        right: 0;
    }

    .story-badge-num {
        font-size: 26px;
    }

    .story-badge-sub {
        font-size: 12px;
    }

    .why-label {
        font-size: 12.5px;
        padding: 7px 14px;
    }

    .story-title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .story-para {
        font-size: 14.5px;
        margin-bottom: 14px;
    }

    .btn-gold {
        font-size: 15px;
        padding: 11px 20px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .our-story-section {
        padding: 28px 16px;
    }

    .story-img-wrap {
        padding-left: 0;
        margin-top: 0;
        padding-top: 0;
    }

    .story-dots-grid {
        display: none;
    }

    .story-big-img {
        height: 380px;
        max-width: 100%;
        border-radius: 16px;
    }

    .story-small-img {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 220px;
        margin-top: -20px;
        border-width: 3px;
        border-radius: 12px;
    }

    .story-badge-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        width: fit-content;
        min-width: 150px;
        padding: 8px 14px;
        border-width: 1.5px;
    }

    .story-badge-num {
        font-size: 22px;
    }

    .story-badge-sub {
        font-size: 11.5px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .story-title {
        font-size: 24px;
        line-height: 1.25;
        margin-top: 20px;
        margin-bottom: 16px;
    }

    .story-para {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .btn-gold {
        font-size: 14px;
        padding: 12px 20px;
        display: inline-block;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .our-story-section {
        padding: 24px 14px;
    }

    .story-img-wrap {
        padding-left: 0;
        margin-top: 0;
        padding-top: 0;
    }

    .story-dots-grid {
        display: none;
    }

    .story-big-img {
        height: 300px;
        max-width: 100%;
        border-radius: 14px;
        border-width: 1px;
    }

    .story-small-img {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 180px;
        margin-top: -18px;
        border-width: 2.5px;
        border-radius: 10px;
    }

    .story-badge-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 14px;
        width: fit-content;
        min-width: 130px;
        padding: 8px 12px;
        border-width: 1.5px;
        border-radius: 10px;
    }

    .story-badge-num {
        font-size: 19px;
    }

    .story-badge-sub {
        font-size: 10.5px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .story-title {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .story-title br {
        display: none;
    }

    .story-para {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 12px;
    }

    .btn-gold {
        font-size: 13px;
        padding: 11px 18px;
        display: block;
        width: 100%;
        text-align: center;
    }
}


/* ===== VISION & MISSION SECTION ===== */
.vision-mission-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
}

/* Title */
.vm-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0;
}

.vm-title-gold {
    color: #f5a623;
}

/* ---- Vision/Mission Card ---- */
.vm-card {
    background: #112240;
    border: 2px solid #868A93;
    border-radius: 20px;
    padding: 36px 32px;
    height: 100%;
}

/* Icon box */
.vm-icon-box {
    width: 75px;
    height: 70px;
    min-width: 75px;
    border-radius: 5px;
    background: rgba(245, 166, 35, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5a623;
    font-size: 40px;
    margin-bottom: 26px;
}

/* Card title */
.vm-card-title {
    color: #f5a623;
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* Vision para */
.vm-card-para {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.8;
    margin: 0;
}

/* Mission points list */
.vm-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vm-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #c8d6e8;
    font-size: 22px;
    line-height: 1.6;
}

.vm-points li i {
    color: #f5a623;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== RESPONSIVE: VISION & MISSION SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .vision-mission-section {
        padding: 36px 30px;
    }

    .vm-title {
        font-size: 36px;
    }

    .vm-card {
        padding: 30px 26px;
    }

    .vm-icon-box {
        width: 62px;
        height: 58px;
        min-width: 62px;
        font-size: 32px;
        margin-bottom: 22px;
    }

    .vm-card-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .vm-card-para {
        font-size: 17px;
    }

    .vm-points li {
        font-size: 17px;
        gap: 12px;
    }

    .vm-points li i {
        font-size: 17px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .vision-mission-section {
        padding: 32px 20px;
    }

    .why-label {
        font-size: 12.5px;
        padding: 7px 14px;
    }

    .vm-title {
        font-size: 30px;
        margin-top: 16px;
    }

    .vm-card {
        padding: 26px 22px;
        border-radius: 16px;
    }

    .vm-icon-box {
        width: 54px;
        height: 50px;
        min-width: 54px;
        font-size: 26px;
        margin-bottom: 18px;
    }

    .vm-card-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .vm-card-para {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .vm-points {
        gap: 14px;
    }

    .vm-points li {
        font-size: 15px;
        gap: 10px;
    }

    .vm-points li i {
        font-size: 15px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .vision-mission-section {
        padding: 28px 16px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .vm-title {
        font-size: 24px;
        margin-top: 14px;
        line-height: 1.25;
    }

    .row.g-4.mt-2 {
        margin-top: 18px !important;
    }

    .vm-card {
        padding: 22px 18px;
        border-radius: 14px;
        border-width: 1.5px;
    }

    .vm-icon-box {
        width: 48px;
        height: 44px;
        min-width: 48px;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .vm-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .vm-card-para {
        font-size: 14px;
        line-height: 1.65;
    }

    .vm-points {
        gap: 12px;
    }

    .vm-points li {
        font-size: 13.5px;
        gap: 10px;
    }

    .vm-points li i {
        font-size: 14px;
        margin-top: 2px;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .vision-mission-section {
        padding: 24px 14px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .vm-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .row.g-4.mt-2 {
        margin-top: 14px !important;
        --bs-gutter-y: 1.2rem;
    }

    .vm-card {
        padding: 18px 16px;
        border-radius: 12px;
        border-width: 1.5px;
    }

    .vm-icon-box {
        width: 42px;
        height: 40px;
        min-width: 42px;
        font-size: 19px;
        margin-bottom: 14px;
    }

    .vm-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .vm-card-para {
        font-size: 13px;
        line-height: 1.6;
    }

    .vm-points {
        gap: 10px;
    }

    .vm-points li {
        font-size: 12.5px;
        gap: 8px;
        line-height: 1.5;
    }

    .vm-points li i {
        font-size: 13px;
        margin-top: 2px;
    }
}


/* ===== CORE VALUES SECTION ===== */
.core-values-section {
    background-color: #0b1623;
    padding: 40px 50px;
}

/* Title */
.cv-title {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0;
}

.cv-title-gold {
    color: #f5a623;
}

/* ---- Core Value Card ---- */
.cv-card {
    border: 2px solid #868A93;
    border-radius: 12px;
    padding: 20px 10px;
    height: 100%;
}

/* Dark variant - 1st, 3rd, 5th */
.cv-card-dark {
    background: #16223a;
}

/* Light variant - 2nd, 4th */
.cv-card-light {
    background: #243a63;
}

/* Card title */
.cv-card-title {
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* Card para */
.cv-card-para {
    color: #b8c4d6;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE: CORE VALUES SECTION ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .core-values-section {
        padding: 36px 30px;
    }

    .cv-title {
        font-size: 36px;
    }

    .cv-card {
        padding: 20px 16px;
    }

    .cv-card-title {
        font-size: 17px;
    }

    .cv-card-para {
        font-size: 12.5px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .core-values-section {
        padding: 32px 20px;
    }

    .why-label {
        font-size: 12.5px;
        padding: 7px 14px;
    }

    .cv-title {
        font-size: 28px;
        margin-top: 16px;
    }

    .row.g-3.mt-2 {
        margin-top: 16px !important;
    }

    .cv-card {
        padding: 20px 18px;
        border-radius: 10px;
    }

    .cv-card-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .cv-card-para {
        font-size: 13px;
        line-height: 1.55;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .core-values-section {
        padding: 28px 16px;
    }

    .why-label {
        font-size: 11.5px;
        padding: 6px 12px;
    }

    .cv-title {
        font-size: 22px;
        margin-top: 14px;
        line-height: 1.25;
    }

    .row.g-3.mt-2 {
        margin-top: 14px !important;
        --bs-gutter-y: 0.9rem;
    }

    .cv-card {
        padding: 18px 16px;
        border-radius: 10px;
        border-width: 1.5px;
    }

    .cv-card-title {
        font-size: 15.5px;
        margin-bottom: 8px;
    }

    .cv-card-para {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .core-values-section {
        padding: 24px 14px;
    }

    .why-label {
        font-size: 10.5px;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .cv-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .row.g-3.mt-2 {
        margin-top: 12px !important;
        --bs-gutter-y: 0.8rem;
    }

    .cv-card {
        padding: 16px 14px;
        border-radius: 10px;
        border-width: 1.5px;
    }

    .cv-card-title {
        font-size: 14.5px;
        margin-bottom: 8px;
    }

    .cv-card-para {
        font-size: 11.5px;
        line-height: 1.48;
    }
}


/* ===== SECTION 1: WHAT MAKES DEOS DIFFERENT ===== */
.deos-different-section {
    background-color: #e0a429;
    padding: 40px 50px;
}

/* Title */
.diff-title {
    color: #0b1a2e;
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 40px;
}

/* Pills wrapper - centered flex wrap */
.diff-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Each pill */
.diff-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(11, 26, 46, 0.12);
    border: 1.5px solid rgba(11, 26, 46, 0.3);
    border-radius: 30px;
    color: #0b1a2e;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 26px;
    white-space: nowrap;
}

.diff-pill i {
    font-size: 20px;
}

/* ===== RESPONSIVE: SECTION 1 - WHAT MAKES DEOS DIFFERENT ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .deos-different-section {
        padding: 36px 30px;
    }

    .diff-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .diff-pills-wrap {
        gap: 14px;
        max-width: 900px;
    }

    .diff-pill {
        font-size: 14.5px;
        padding: 10px 22px;
    }

    .diff-pill i {
        font-size: 18px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .deos-different-section {
        padding: 32px 20px;
    }

    .diff-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .diff-pills-wrap {
        gap: 12px;
        max-width: 100%;
    }

    .diff-pill {
        font-size: 13.5px;
        padding: 10px 18px;
    }

    .diff-pill i {
        font-size: 16px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .deos-different-section {
        padding: 28px 16px;
    }

    .diff-title {
        font-size: 24px;
        margin-bottom: 22px;
        line-height: 1.3;
    }

    .diff-pills-wrap {
        gap: 10px;
        max-width: 100%;
    }

    .diff-pill {
        font-size: 12.5px;
        padding: 10px 16px;
        white-space: normal;
    }

    .diff-pill i {
        font-size: 15px;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .deos-different-section {
        padding: 24px 14px;
    }

    .diff-title {
        font-size: 26px;
        margin-bottom: 18px;
        line-height: 1.3;
    }

    .diff-pills-wrap {
        gap: 8px;
        max-width: 100%;
    }

    .diff-pill {
        font-size: 11.5px;
        width: 220px;
        text-align: center;
        padding: 10px 14px;
        white-space: normal;
        gap: 8px;
    }

    .diff-pill i {
        font-size: 13px;
    }
}


/* ===== SECTION 2: READY TO TRANSFORM CTA ===== */
.transform-cta-section {
    background-color: #0b1a2e;
    padding: 40px 50px;
}

/* Title */
.tcta-title {
    color: #ffffff;
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 18px;
}

/* Text */
.tcta-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 32px;
}

.transform-cta-section .btn-gold {
    border-radius: 5px;
}

/* Stylish quote */
.tcta-quote {
    color: #f5a623;
    font-family: 'Caveat', cursive;
    font-size: 45px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 0;
}

/* ===== RESPONSIVE: SECTION 2 - READY TO TRANSFORM CTA ===== */

/* ---- Large Tablets / Small Laptops (993px - 1199px) ---- */
@media (min-width: 993px) and (max-width: 1199px) {
    .transform-cta-section {
        padding: 36px 30px;
    }

    .tcta-title {
        font-size: 36px;
    }

    .tcta-text {
        font-size: 17px;
        margin-bottom: 26px;
    }

    .transform-cta-section .btn-gold {
        font-size: 16px;
        padding: 12px 22px;
    }

    .tcta-quote {
        font-size: 36px;
        margin-top: 40px;
    }
}

/* ---- Tablets (768px - 992px) ---- */
@media (min-width: 768px) and (max-width: 992px) {
    .transform-cta-section {
        padding: 32px 20px;
    }

    .tcta-title {
        font-size: 28px;
    }

    .tcta-text {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .transform-cta-section .btn-gold {
        font-size: 15px;
        padding: 11px 20px;
    }

    .tcta-quote {
        font-size: 28px;
        margin-top: 32px;
    }
}

/* ---- Mobile Landscape / Large Phones (576px - 767px) ---- */
@media (min-width: 576px) and (max-width: 767px) {
    .transform-cta-section {
        padding: 28px 16px;
    }

    .tcta-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .tcta-text {
        font-size: 13.5px;
        margin-bottom: 20px;
        line-height: 1.55;
    }

    .transform-cta-section .btn-gold {
        font-size: 14px;
        padding: 11px 18px;
    }

    .tcta-quote {
        font-size: 20px;
        margin-top: 28px;
    }
}

/* ---- Mobile Portrait (max-width: 575px) ---- */
@media (max-width: 575px) {
    .transform-cta-section {
        padding: 24px 14px;
    }

    .tcta-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .tcta-text {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .transform-cta-section .btn-gold {
        font-size: 13px;
        padding: 11px 16px;
        display: inline-block;
    }

    .tcta-quote {
        font-size: 18px;
        margin-top: 22px;
        line-height: 1.5;
    }
}


/*@media (max-width: 575px) {*/
/*    .deosweb {*/
/*        padding: 20px 0;*/
/*    }*/
/*}*/