:root {
    /* Primary Brand Colors */
    --primary-green: #00A88E;
    --primary-green-dark: #008C76;
    --primary-green-light: #33B9A4;

    /* Neutral Colors */
    --dark-gray: #6D6E71;
    --medium-gray: #8A8C8F;
    --light-gray: #D9D9D9;
    --soft-gray: #F3F4F6;

    /* Base Colors */
    --white: #FFFFFF;
    --black: #1E1E1E;

    /* Optional Semantic Colors */
    --text-primary: var(--dark-gray);
    --text-secondary: var(--medium-gray);
    --bg-primary: var(--white);
    --bg-light: var(--soft-gray);

    /* Accent */
    --accent: var(--primary-green);
    --border-color: #D0D5DD;

    --text-font: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Titillium Web", sans-serif;
}

section {
    overflow: hidden;
}

a {
    text-decoration: none;
}


/* ---------------------------------------------------------------------------------- WEBKIT SCROLLBAR */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(222, 222, 223, 0.8);
    backdrop-filter: blur(8px);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            rgba(51, 185, 164, .95),
            rgba(0, 168, 142, .95));

    border: 3px solid rgba(255, 255, 255, .75);
    border-radius: 40px;

    box-shadow:
        0 6px 18px rgba(0, 168, 142, .18);
}

/* -------------------------------------------------------------------------- CENTERED UNIVERSAL HEADING */
.universal-heading {
    text-align: center;
}

.uh-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green-dark);
    background: rgba(0, 168, 142, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 168, 142, 0.25);
}

.uh-title {
    font-size: clamp(32px, 4vw, 52px);
    ;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 900px;
    margin: auto;
}

.uh-muted {
    color: var(--medium-gray);
    font-weight: 600;
}

.uh-accent {
    color: var(--accent);
    font-weight: 600;
}

.uh-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: auto;
    font-family: var(--text-font);
}

/* ------------------------------------------------------------------------------ LEFT UNIVERSAL HEADING */
.left-universal-heading {}

.left-uh-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-green-dark);
    background: rgba(0, 168, 142, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 168, 142, 0.25);
}

.left-uh-title {
    font-size: clamp(32px, 4vw, 52px);
    ;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.left-uh-muted {
    color: var(--medium-gray);
    font-weight: 600;
}

.left-uh-accent {
    color: var(--accent);
    font-weight: 600;
}

.left-uh-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    font-family: var(--text-font);
}



/* ------------------------------------------------------------------------------ HERO SECTION */
.hero-wrapper {
    position: relative;
    margin: 12px;
    border-radius: 38px;
    overflow: hidden;
}

.hero-section {
    padding: 130px 0 80px;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)),
        url("../images/real-imgs/herosection.png") center center/cover no-repeat;
    box-shadow:
        0 40px 80px rgba(11, 43, 110, .22),
        inset 0 1px 0 rgba(255, 255, 255, .07);
}

.hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -2px;
    color: white;
    max-width: 700px;
    margin-bottom: 28px;
}

.hero h1 span,
.cta-span {
    background: linear-gradient(90deg, #4af0d5, #7db4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.8;
    color: #c8d8ff;
    margin-bottom: 35px;
    font-family: var(--text-font);
}

.hero-btns {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--primary-green);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 50px;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, .55);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
}

/* ------------------------------------------------------------------------ STATISTICS SECTION */
.consulting-section {
    padding: 80px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8fbfa 100%);
}

.section-title {
    max-width: 760px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 56px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 0;
}

.stats-wrapper {
    border-radius: 30px;
    overflow: hidden;
    background: var(--soft-gray);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, .6);
}

.stats-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.stats-wrapper .col-lg-3,
.stats-wrapper .col-md-6 {
    display: flex;
}

.stat-card {
    padding: 48px 30px 30px;
    width: 100%;
    height: auto;
    background: var(--soft-gray);
    border: 1px solid rgba(109, 110, 113, .18);

    display: flex;
    flex-direction: column;
    flex: 1;
    transition: .45s ease;
    position: relative;
    overflow: hidden;
}



.stat-card.active {
    background: linear-gradient(145deg,
            var(--primary-green),
            var(--primary-green-dark));
    /* transform: translateY(-8px); */
    box-shadow: 0 30px 60px rgba(0, 168, 142, .18);
    color: var(--white);
    z-index: 3;
    cursor: pointer;
}

.stat-card.active h4,
.stat-card.active p {
    color: var(--white);
}

.stat-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(0, 168, 142, .06),
            rgba(51, 185, 164, .02));
    opacity: 0;
    transition: .45s;
}

.stat-card:hover:before {
    opacity: 1;
}

.stat-card:hover {
    background: linear-gradient(145deg,
            var(--primary-green),
            var(--primary-green-dark));
    /* transform: translateY(-8px); */
    box-shadow: 0 30px 60px rgba(0, 168, 142, .18);
    color: var(--white);
    z-index: 3;
}

.stat-card:hover h3,
.stat-card:hover h4,
.stat-card:hover p {
    color: var(--white);
}

.stat-card:hover .divider {
    background: rgba(255, 255, 255, .28);
}

.stat-number {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1;
}

.divider {
    height: 1px;
    background: rgba(109, 110, 113, .25);
    margin-bottom: 45px;
    transition: .35s;
}

.stat-card h4 {
    font-size: px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 22px;
    color: var(--black);
    transition: .35s;
}

.stat-card p {
    font-size: 16px;
    color: #2f3134;
    max-width: 95%;
    transition: .35s;
    flex-grow: 1;
    font-family: var(--text-font);
}

/* --------------------------------------------------------------------------- ABOUT US SECTION */
.about-section {
    padding: 110px 0;
    overflow: hidden;
    position: relative;
    background: #F4F4EB;
}



.about-content p {
    font-family: var(--text-font);
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(0, 168, 142, .14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(0, 168, 142, .22);

    color: var(--primary-green-dark);
    font-size: 15px;
    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(0, 168, 142, .12),
        inset 0 1px 0 rgba(255, 255, 255, .55);

    position: relative;
    overflow: hidden;

    transition: .35s ease;
}

.about-tag::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;

    background: linear-gradient(to bottom,
            rgba(255, 255, 255, .35),
            transparent);

    pointer-events: none;
}

.about-tag:hover {
    transform: translateY(-2px);
    background: rgba(0, 168, 142, .18);
    box-shadow:
        0 14px 35px rgba(0, 168, 142, .18),
        inset 0 1px 0 rgba(255, 255, 255, .65);
}

.tag-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(0, 168, 142, .4);
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

.about-content h2 span {
    background: linear-gradient(90deg,
            var(--primary-green),
            var(--primary-green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    max-width: 560px;
}

.about-visual {
    position: relative;
    min-height: 600px;
}

.main-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .14);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s;
}

.main-image:hover img {
    transform: scale(1.04);
}

.float-image {
    position: absolute;
    left: 0;
    top: 90px;
    width: 42%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .16);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

.float-image img {
    width: 100%;
    display: block;
}

@keyframes floatCard {
    50% {
        transform: translateY(-18px);
    }
}

/* ------------------------------------------------------------------------------------- SERVICES SECTION */
.services-section {
    padding: 80px 0;
}

.service-card {
    background: var(--white);
    border-radius: 18px;
    padding: 18px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
}

.service-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
    font-family: var(--text-font);
}

.service-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.service-link:hover {
    color: var(--primary-green-dark);
    gap: 10px;
}

.arrow {
    transition: transform 0.3s ease;
}

.service-link:hover .arrow {
    transform: translateX(4px);
}


/* ------------------------------------------------------------------------------- WHY CHOOSE US */
.why-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.mini-tag {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
}

.main-heading {
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin: 15px 0 30px;
    line-height: 1.2;
}

.left-img img {
    width: 100%;
    border-radius: 18px;
}

.features {
    padding-left: 60px;
}

.feature-item {
    display: flex;
    gap: 18px;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.feature-item h5 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--black);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    font-family: var(--text-font);
}

.icon {
    font-size: 20px;
    color: var(--black);
    min-width: 30px;
}

.feature-item.active {
    background: var(--accent);
}

.feature-item.active h5,
.feature-item.active p,
.feature-item.active .icon {
    color: var(--white);
}

.timeline {
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
}

.line {
    width: 2px;
    height: 100%;
    background: var(--light-gray);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.progress-line {
    width: 2px;
    height: 0;
    background: var(--accent);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: height 0.5s cubic-bezier(.65, .05, .36, 1);
}

.dot {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    transition: top 0.5s cubic-bezier(.65, .05, .36, 1);
}

.feature-item:hover {
    transform: translateX(6px);
}

/* -------------------------------------------------------------------------------- TESTIMONIALS SECTION */
.tsm-section {
    padding: 80px 0;
    overflow: hidden;
}

.tsm-stage {
    position: relative;
    display: flex;
    gap: 16px;
    height: 620px;
    overflow: hidden;
    padding: 0 20px;
}

.tsm-stage::before,
.tsm-stage::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 140px;
    z-index: 10;
    pointer-events: none;
}

.tsm-stage::before {
    top: 0;
    background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
}

.tsm-stage::after {
    bottom: 0;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
}

.tsm-stripe {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tsm-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}

.tsm-card:hover {
    box-shadow: 0 4px 20px rgba(0, 168, 142, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 168, 142, 0.3);
    transform: translateY(-2px);
}

.tsm-card-text {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 18px;
    font-family: var(--text-font);
}

.tsm-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tsm-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--soft-gray);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.tsm-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
}

.tsm-author-role {
    font-size: 11.5px;
    color: var(--text-secondary);
    margin-top: 1px;
}

.tsm-card-text::before {
    content: '"';
    font-family: var(--text-font);
    font-size: 32px;
    line-height: 0;
    vertical-align: -14px;
    color: var(--primary-green);
    margin-right: 2px;
    font-weight: 700;
}

.tsm-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.tsm-stars svg {
    width: 12px;
    height: 12px;
}

@keyframes tsm-scroll-up {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

@keyframes tsm-scroll-down {
    from {
        transform: translateY(-50%);
    }

    to {
        transform: translateY(0);
    }
}

.tsm-stripe-up {
    animation: tsm-scroll-up var(--tsm-dur, 28s) linear infinite;
}

.tsm-stripe-down {
    animation: tsm-scroll-down var(--tsm-dur, 32s) linear infinite;
}

.tsm-stripe-up.tsm-paused,
.tsm-stripe-down.tsm-paused {
    animation-play-state: paused;
}

@media (max-width: 1024px) {
    .tsm-stage {
        height: 560px;
    }

    .tsm-stripe {
        flex: 0 0 50%;
    }
}


.swipe-hint {
    display: none;
}

@media (max-width: 600px) {

    .tsm-stage {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        height: auto;
        gap: 14px;
        padding: 0 16px 10px;
        scroll-snap-type: x mandatory;
    }

    /* Remove gradient overlay */
    .tsm-stage::before,
    .tsm-stage::after {
        display: none;
    }

    /* KEY: Flatten stripes */
    .tsm-stripe {
        display: contents;
        /* breaks column layout */
        animation: none !important;
    }

    /* Cards behave like slider items */
    .tsm-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: start;
        padding: 16px;
        border-radius: 14px;
    }

    /* Optional typography tweaks */
    .tsm-card-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .swipe-hint {
        display: block;
        color: var(--dark-gray);
        text-align: center;
    }
}

.tsm-stage::-webkit-scrollbar {
    display: none;
}

.tsm-stage {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ============================================================================== FAQ SECTION ========================= */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(0, 168, 142, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

.faq-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 16px;
}

.faq-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.faq-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.faq-btn:hover {
    background: var(--primary-green-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.faq-icon {
    font-size: 20px;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: max-height 0.4s ease;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item:hover {
    transform: translateY(-3px);
}


/* -------------------------------------------------------------------------------------- CTA SECTION */
.czs-wrapper {
    border-radius: 40px;
    overflow: hidden;
    margin: 60px 60px;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.18);
}

@media (max-width:992px) {
    .czs-wrapper {
        margin: 12px;
    }

    .values-box {
        padding: 60px 12px !important;
    }
}

.czs-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    overflow: hidden;
    background-color: #3a4a52;
}

.czs-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    object-fit: cover;
    background: url('../images/real-imgs/demo-img-2.jpg') bottom / cover no-repeat;

}

.czs-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.czs-eyebrow {
    font-family: var(--text-font);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 18px;
}

.czs-headline {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.czs-subtext {
    font-size: 15px;
    font-weight: 700;
    color: #c8d8ff;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.czs-form-row {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 100px;
    padding: 6px 6px 6px 22px;
    max-width: 460px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease;
}

.czs-form-row:focus-within {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.czs-email-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--text-font);
    font-size: 14px;
    color: var(--black);
    min-width: 0;
}

.czs-email-input::placeholder {
    color: var(--medium-gray);
}

.czs-subscribe-btn {
    flex-shrink: 0;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 11px 26px;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.czs-subscribe-btn:hover {
    background: #2a2a2a;
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.czs-subscribe-btn:active {
    transform: scale(0.98);
}

.czs-tagline {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}


/* ----------------------------------------------------------------------- FOOTER SECTION UI */
.saas-footer {
    margin: 12px;
    border-radius: 38px;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            var(--black) 0%,
            #182a28 55%,
            var(--primary-green-dark) 100%);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .12);

    position: relative;
}

.saas-footer:before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(rgba(51, 185, 164, .25),
            transparent 70%);
    filter: blur(40px);
}

.footer-cta {
    padding: 60px 0px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    z-index: 2;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 24px;
    border-radius: 50px;

    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, .12);

    color: #dffcf6;
    font-weight: 600;
    margin-bottom: 30px;
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-green-light);
    box-shadow: 0 0 12px rgba(51, 185, 164, .6);
}

.footer-cta h2 {
    font-size: 45px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
    color: white;
    max-width: 720px;
    /* margin-bottom: 24px; */
    font-family: var(--text-font);
}

.footer-cta p {
    font-size: 19px;
    color: #d8e8e4;
    max-width: 650px;
    line-height: 1.8;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    background: white;
    color: var(--black);

    padding: 10px 24px;
    border-radius: 70px;

    font-weight: 700;
    text-decoration: none;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .18);

    transition: .35s;
}

.footer-btn span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-btn:hover {
    transform: translateY(-5px);
}

.footer-main {
    padding: 70px 0px 35px;
    position: relative;
    z-index: 2;
}

.footer-brand h4 {
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin: 20px 0 16px;
}

.brand-logo img {
    width: 260px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-brand p {
    color: #c7dad5;
    line-height: 1.8;
    max-width: 360px;
}

.socials {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);

    color: white;
    text-decoration: none;
    transition: .35s;
}

.socials a:hover {
    background: var(--primary-green);
    transform: translateY(-4px);
}


.footer-main h5 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.footer-main ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-main li {
    margin-bottom: 14px;
}

.footer-main a {
    color: #c8dad6;
    text-decoration: none;
    transition: .3s;
}

.footer-main a:hover {
    color: white;
    padding-left: 4px;
}


.newsletter-text {
    color: #c8dad6;
    margin-bottom: 18px;
}

.newsletter-box {
    display: flex;
    padding: 8px;
    border-radius: 60px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
}

.newsletter-box input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 14px 18px;
    color: white;
}

.newsletter-box input::placeholder {
    color: #b8d4ce;
}

.newsletter-box button {
    border: none;
    padding: 14px 28px;
    border-radius: 50px;

    background: var(--primary-green);
    color: white;
    font-weight: 700;
}


.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, .08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #c5d8d2;
}

@media (max-width: 1024px) {

    .footer-cta h2 {
        font-size: 36px;
        max-width: 100%;
    }

    .footer-cta p {
        font-size: 17px;
    }

    .footer-main {
        padding: 60px 0 30px;
    }

    .brand-logo img {
        width: 220px;
        height: auto;
    }
}

@media (max-width: 768px) {

    .saas-footer {
        border-radius: 24px;
        margin: 10px;
    }

    .footer-cta {
        padding: 50px 0 30px;

    }

    .footer-cta h2 {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .footer-cta p {
        font-size: 15.5px;
        margin: 0 auto;
    }

    .mini-badge {
        padding: 10px 18px;
        font-size: 13px;
    }

    .footer-btn {
        margin-top: 18px;
    }

    .footer-main {
        padding: 50px 0 25px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .socials {
        /*justify-content: center;*/
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* -------------------------------------------------------------------------------------------------- BREADCRUMB SECTION */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 22px;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #d6ebff;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bc-hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 28px;
    margin: 12px;
    padding: 220px 0px 60px;
}

.bc-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bc-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(30, 30, 30, 0.75) 0%,
            rgba(30, 30, 30, 0.55) 50%,
            rgba(30, 30, 30, 0.2) 100%);
    z-index: 2;
}

.bc-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.bc-nav {
    font-size: 18px;
    margin-bottom: 5px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.bc-nav a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.bc-nav a:hover {
    opacity: 1;
    color: var(--accent);
}

.bc-nav .active {
    opacity: 1;
    font-weight: 500;
}

.bc-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.bc-desc {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ---------------------------------------------------------------------------------------- ABOUT PAGE */
.about-premium {
    padding: 90px 0;
}

.about-visual-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto;
    gap: 24px;
    align-items: center;
    max-width: 640px;
    margin-left: auto;
}

/* Tablets */
@media (max-width: 992px) {
    .about-visual-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .about-visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
        margin-left: 0;
    }
}

.exp-card {
    grid-column: 1;
    grid-row: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border-radius: 22px;
    padding: 40px 30px;

    background: rgba(0, 168, 142, .14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .35);

    box-shadow:
        0 20px 50px rgba(0, 168, 142, .18),
        inset 0 1px 0 rgba(255, 255, 255, .45);
}

.exp-card h3 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    color: var(--primary-green-dark);
    margin-bottom: 10px;
}

.exp-card span {
    text-align: center;
    font-weight: 600;
    color: var(--dark-gray);
    line-height: 1.5;
}

.img-card {
    overflow: hidden;
    border-radius: 28px;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .12);

    transition: .45s ease;
}

.img-card:hover {
    transform: translateY(-8px);
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tall-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    height: 500px;
}

.wide-card {
    grid-column: 1;
    grid-row: 2;
    height: 260px;
}

/* ---------------------------------------------------------------------------------------------- CORE VALUES */
.core-values-section {
    padding: 80px 0;
    background: #f7f6f2;
}

.values-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 34px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, .05);
}


.value-row {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    background: white;
}

.value-card {
    padding: 50px 38px;
    height: 100%;

    border-right: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);

    transition: .35s ease;
    position: relative;
    background: white;
}

.col-md-6:nth-child(2) .value-card,
.col-md-6:nth-child(4) .value-card {
    border-right: none;
}

.col-md-6:nth-child(3) .value-card,
.col-md-6:nth-child(4) .value-card {
    border-bottom: none;
}

.value-card:hover,
.active-card {
    background: linear-gradient(180deg,
            #ffffff,
            #f7fffd);

    transform: translateY(-4px);
}

.value-card:hover:before,
.active-card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-green);
}

.value-icon {
    width: 84px;
    height: 84px;
    border-radius: 18px;
    padding: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 168, 142, .08);
    color: var(--primary-green);

    font-size: 30px;
    margin-bottom: 26px;
}

.value-icon img {

    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-card h4 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--black);
}

.value-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 0;
}

/* ------------------------------------------------------------------------------------------- OUR JOURNEY */
.process-section {
    padding: 80px 0;
    overflow: hidden;
}

.process-wrapper {
    /* margin-top: 20px; */
}

.process-card {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 28px;

    background: #ECE9E1;

    padding: 36px 42px;
    border-radius: 30px;

    width: 100%;
    height: 100%;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .04);

    transition: .4s ease;
    overflow: visible;
}

.process-card:before {
    content: "";
    position: absolute;
    left: 110px;
    top: 28px;
    bottom: 28px;
    width: 1px;

    border-left: 2px dashed rgba(0, 0, 0, .15);
}


.process-card:hover {
    transform: translateY(-8px);
    background: white;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .08);
}

.step-no {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--primary-green);
    min-width: 52px;
    position: relative;
    z-index: 2;
}

.step-content {
    padding-left: 18px;
}

.step-content h4 {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 18px;
}

.step-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--dark-gray);
    margin: 0;
    max-width: 330px;
}




/* ------------------------------------------------------------------------------------ MOBILITY SERVICES */

/* ------------------------------------------------------------------------------------------------ CONTACT US PAGE */
/* ── PAGE WRAPPER ── */
.ctp-page {
    padding: 80px 0;
}

/* ── PAGE HEADER ── */
.ctp-header {
    text-align: center;
    margin-bottom: 52px;
}

.ctp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--primary-green);
    background: rgba(0, 168, 142, 0.08);
    border: 1px solid rgba(0, 168, 142, 0.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.ctp-eyebrow::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-green);
}

.ctp-page-title {
    font-family: var(--heading-font);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--black);
    line-height: 1.12;
    margin-bottom: 12px;
}

.ctp-page-subtitle {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.68;
}

/* ── MAIN CARD ── */
.ctp-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr;
}

/* ── LEFT PANEL ── */
.ctp-left {
    background: var(--black);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* decorative circles */
.ctp-left::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 142, 0.20) 0%, transparent 70%);
    pointer-events: none;
}

.ctp-left::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 142, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.ctp-left-title {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.ctp-left-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 40px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* contact items */
.ctp-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.ctp-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ctp-info-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s;
}

.ctp-info-item:hover .ctp-info-icon {
    background: rgba(0, 168, 142, 0.2);
    border-color: rgba(0, 168, 142, 0.35);
}

.ctp-info-icon svg {
    width: 16px;
    height: 16px;
    color: var(--primary-green);
}

.ctp-info-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 3px;
}

.ctp-info-value {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

.ctp-info-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s;
}

.ctp-info-value a:hover {
    color: var(--primary-green);
}

/* divider */
.ctp-left-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 32px 0;
    position: relative;
    z-index: 1;
}

/* quick response badge */
.ctp-quick {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(0, 168, 142, 0.12);
    border: 1px solid rgba(0, 168, 142, 0.25);
    border-radius: 12px;
    padding: 14px 16px;
    position: relative;
    z-index: 1;
}

.ctp-quick-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 168, 142, 0.25);
    margin-top: 4px;
}

.ctp-quick-title {
    font-family: var(--heading-font);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.ctp-quick-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
}

/* ── RIGHT PANEL — FORM ── */
.ctp-right {
    padding: 48px 44px;
}

.ctp-form-title {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.ctp-form-sub {
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 32px;
}

/* field label */
.ctp-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}

.ctp-label span {
    color: var(--primary-green);
    margin-left: 2px;
}

/* inputs */
.ctp-input,
.ctp-select,
.ctp-textarea {
    width: 100%;
    font-family: var(--text-font);
    font-size: 14px;
    color: var(--black);
    background: var(--white);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
    appearance: none;
    -webkit-appearance: none;
}

.ctp-input::placeholder,
.ctp-textarea::placeholder {
    color: var(--light-gray);
}

.ctp-input:focus,
.ctp-select:focus,
.ctp-textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 168, 142, 0.12);
    background: var(--white);
}

.ctp-input:hover,
.ctp-select:hover,
.ctp-textarea:hover {
    border-color: var(--medium-gray);
}

.ctp-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8C8F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
    color: var(--dark-gray);
}

.ctp-select option {
    color: var(--black);
}

.ctp-textarea {
    resize: vertical;
    min-height: 118px;
    line-height: 1.6;
}

/* phone prefix row */
.ctp-phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ctp-phone-prefix {
    position: absolute;
    left: 14px;
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
    user-select: none;
    pointer-events: none;
}

.ctp-phone-wrap .ctp-input {
    padding-left: 52px;
}

/* form footer */
.ctp-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.ctp-required-note {
    font-size: 12px;
    color: var(--medium-gray);
}

/* submit button */
.ctp-submit {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--primary-green);
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
    box-shadow: 0 4px 16px rgba(0, 168, 142, 0.28);
    white-space: nowrap;
}

.ctp-submit:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 168, 142, 0.38);
}

.ctp-submit:active {
    transform: scale(0.97);
}

.ctp-submit svg {
    width: 15px;
    height: 15px;
    transition: transform 0.2s;
}

.ctp-submit:hover svg {
    transform: translateX(3px) rotate(-10deg);
}

/* success state */
.ctp-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.ctp-success-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 168, 142, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ctp-success-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-green);
}

.ctp-success h3 {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.ctp-success p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

@media (max-width: 1024px) {

    .ctp-card {
        grid-template-columns: 280px 1fr;
    }

    .ctp-left {
        padding: 40px 28px;
    }

    .ctp-right {
        padding: 40px 32px;
    }

    .ctp-page {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {

    .ctp-card {
        grid-template-columns: 1fr;
    }

    /* Left panel becomes top */
    .ctp-left {
        padding: 32px 24px;
    }

    .ctp-right {
        padding: 32px 24px;
    }

    .ctp-left-divider {
        margin: 24px 0;
    }

    /* Reduce spacing */
    .ctp-info-list {
        gap: 18px;
    }

    .ctp-page {
        padding: 50px 0;
    }
}

@media (max-width: 600px) {

    .ctp-card {
        border-radius: 18px;
    }

    .ctp-left,
    .ctp-right {
        padding: 26px 18px;
    }

    .ctp-left-title {
        font-size: 18px;
    }

    .ctp-left-sub {
        font-size: 12px;
        margin-bottom: 28px;
    }

    .ctp-info-value {
        font-size: 13px;
    }

    .ctp-form-title {
        font-size: 18px;
    }

    .ctp-form-sub {
        font-size: 12.5px;
        margin-bottom: 24px;
    }

    /* Stack inputs full width */
    .row.g-3>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Inputs */
    .ctp-input,
    .ctp-select,
    .ctp-textarea {
        font-size: 13.5px;
        padding: 10px 12px;
    }

    .ctp-textarea {
        min-height: 100px;
    }

    /* Phone prefix spacing */
    .ctp-phone-prefix {
        left: 12px;
        font-size: 13px;
    }

    .ctp-phone-wrap .ctp-input {
        padding-left: 46px;
    }

    /* Footer stack */
    .ctp-form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ctp-submit {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13.5px;
    }
}

@media (max-width: 400px) {

    .ctp-left,
    .ctp-right {
        padding: 22px 14px;
    }

    .ctp-submit {
        font-size: 13px;
        padding: 11px 16px;
    }

    .ctp-info-icon {
        width: 34px;
        height: 34px;
    }
}

/* ── Verticals Section ── */
.verticals-section {
    padding: 80px 0;
    background: var(--bg, #fff);
}

.vertical-card {
    background: var(--card-bg, #f8f9fa);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 12px;
    padding: 32px 28px 28px;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vertical-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.vertical-card .vc-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent, #f97316);
    margin-bottom: 12px;
}

.vertical-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--heading-color, #111827);
}

.vertical-card .vc-subtitle {
    font-size: 0.85rem;
    color: var(--muted, #6b7280);
    margin-bottom: 16px;
}

.vertical-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.vertical-card ul li {
    font-size: 0.875rem;
    color: var(--text, #374151);
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vertical-card ul li:last-child {
    border-bottom: none;
}

.vertical-card ul li::before {
    content: "→";
    color: var(--accent, #f97316);
    font-weight: 600;
    flex-shrink: 0;
}

.vc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.vc-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--accent-light, #fff7ed);
    color: var(--accent, #f97316);
    border: 1px solid var(--accent, #f97316);
}

.vc-link {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.vc-link:hover {
    gap: 10px;
    color: var(--white, #f97316);
    box-shadow:0px 0px 10px 1px black;
}

@media (min-width: 768px) {
    .overflow-md-visible {
        overflow: visible !important;
    }
}