/* =============================================
   CHITIET (Project Detail) Page Styles
   ============================================= */

/* Breadcrumb */
.chitiet-breadcrumb {
    padding: 20px 0 0;
}

.breadcrumb-text {
    font-size: 14px;
    color: rgba(47, 47, 47, 0.6);
    font-family: var(--font-family);
}

/* Hero Section */
.chitiet-hero {
    position: relative;
    padding: 24px 0 60px;
    overflow: hidden;
}

.chitiet-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Left: Content */
.chitiet-hero-content {
    flex: 1;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.chitiet-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #bcebda;
    border-radius: 10px;
    padding: 4px 16px;
    font-size: 16px;
    color: #828282;
    font-family: var(--font-family);
    width: fit-content;
}

.chitiet-title {
    font-size: 32px;
    font-family: var(--font-family);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -1.6px;
}

.title-dark {
    color: #064666;
}

.title-green {
    color: #26ffb1;
}

.chitiet-scroll-arrow {
    width: 38px;
    height: 38px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.chitiet-scroll-arrow:hover {
    opacity: 1;
}

/* Right: Stats */
.chitiet-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 420px;
    padding-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-label {
    font-size: 14px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #2f2f2f;
    letter-spacing: -0.7px;
}

.stat-value {
    font-size: 18px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #2f2f2f;
    line-height: 1.4;
}

/* PROJECT watermark */
.chitiet-watermark {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.chitiet-watermark span {
    display: block;
    font-size: 220px;
    font-weight: 700;
    color: #bcebda;
    opacity: 0.35;
    letter-spacing: -4px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    font-family: var(--font-family);
    user-select: none;
}

/* Main Image Section */
.chitiet-image-section {
    padding: 40px 0 80px;
    position: relative;
    z-index: 2;
}

.chitiet-main-image {
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    aspect-ratio: 2 / 1;
}

.chitiet-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Star decoration */
.chitiet-star-deco {
    position: absolute;
    right: calc(50% - 700px);
    top: 70%;
    width: 329px;
    pointer-events: none;
    z-index: 3;
    /* margin-top: -160px; */
}

.chitiet-star-deco img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   Process Steps + Result Section
   ============================================= */
.process-section {
    padding: 80px 0 100px;
}

/* Steps */
.process-steps {
    position: relative;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.process-circle-deco {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 526px;
    pointer-events: none;
    z-index: 0;
}

.process-circle-deco img {
    width: 100%;
    height: auto;
    display: block;
}

.process-card {
    position: relative;
    z-index: 1;
    flex: 1;
    background: #eff5fe;
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 238px;
    transition: background 0.3s ease;
}

.process-card:hover {
    background: #C2DAFF;
}

.process-card-step {
    font-size: 18px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #262626;
    display: block;
}

.process-card-body {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.process-card-name {
    font-size: 48px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #262626;
    line-height: normal;
}

.process-card-desc {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #262626;
    line-height: 1.124;
}

/* Slider Image */
.process-slider-image {
    border-radius: 20px;
    overflow: hidden;
    max-width: 634px;
    margin: 0 auto;
}

.process-slider-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Slider Nav */
.process-slider-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
}

.process-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.process-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bfbfbf;
    display: block;
}

.process-dot--active {
    background: #262626;
}

.process-counter {
    font-family: var(--font-family);
    font-size: 10px;
    color: #bfbfbf;
}

.process-counter-num {
    font-size: 20px;
    color: #000;
}

/* Result */
.result-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 580px;
    margin-bottom: 77px;
}

.result-label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #a4a4a4;
    font-family: var(--font-family);
}

.result-label-num,
.result-label-text {
    font-weight: 400;
    line-height: normal;
}

.result-title {
    font-size: 48px;
    font-family: var(--font-family);
    font-weight: 400;
    line-height: normal;
}

.result-title-dark {
    color: #064666;
}

.result-title-green {
    color: #00ffa3;
}

/* Stats row */
.result-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.result-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.result-stat-number {
    font-size: 150px;
    font-family: var(--font-family);
    font-weight: 700;
    background: linear-gradient(90deg, #19d08e 0%, #26ffb1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -7.5px;
    line-height: 1;
    white-space: nowrap;
}

.result-stat-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.result-stat-label {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #262626;
    text-align: center;
    line-height: normal;
}

/* =============================================
   Solutions & Process Section
   ============================================= */
.solutions-section {
    padding: 80px 0;
}

.solutions-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.solutions-label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #a4a4a4;
    font-family: var(--font-family);
    white-space: nowrap;
    flex-shrink: 0;
}

.solutions-label-num,
.solutions-label-text {
    font-weight: 400;
    line-height: normal;
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 742px;
}

.solutions-title {
    font-size: 48px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #064666;
    line-height: normal;
}

.solutions-desc {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #2f2f2f;
    line-height: normal;
}

/* =============================================
   Problem - Agitate Section
   ============================================= */
.problem-section {
    padding: 80px 0 100px;
}

.problem-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 742px;
    margin-bottom: 62px;
}

.problem-label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #a4a4a4;
    font-family: var(--font-family);
    line-height: normal;
}

.problem-label-num {
    font-weight: 400;
}

.problem-label-text {
    font-weight: 400;
}

.problem-title {
    font-size: 48px;
    font-family: var(--font-family);
    font-weight: 400;
    line-height: normal;
}

.problem-title-gray {
    color: #a9a9a9;
}

.problem-title-dark {
    color: #064666;
    font-weight: 400;
}

/* Content row: image left, text right */
.problem-content {
    display: flex;
    gap: 227px;
    align-items: flex-start;
}

.problem-image {
    flex-shrink: 0;
    width: 311px;
    height: 397px;
    border-radius: 20px;
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    height: 165%;
    object-fit: cover;
    display: block;
    object-position: center top;
    margin-top: -8%;
}

.problem-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    max-width: 742px;
}

.problem-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    flex-shrink: 0;
}

.problem-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-block-title {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #064666;
    line-height: normal;
}

.problem-block-body {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #2f2f2f;
    line-height: normal;
}

/* =============================================
   Before / After Section
   ============================================= */
.before-after-section {
    padding: 80px 0;
}

.ba-row {
    display: flex;
    gap: 81px;
    align-items: center;
    margin-bottom: 81px;
}

.ba-row:last-child {
    margin-bottom: 0;
}

.ba-text {
    flex: 0 0 600px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ba-tag {
    font-size: 16px;
    color: #a4a4a4;
    font-family: var(--font-family);
    font-weight: 400;
}

.ba-title {
    font-size: 32px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #064666;
    line-height: normal;
}

.ba-desc {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #2f2f2f;
    line-height: normal;
}

.ba-image {
    flex: 0 0 600px;
    height: 313px;
    border-radius: 10px;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================================
   Testimonial Section
   ============================================= */
.testimonial-section {
    padding: 60px 0 80px;
}

.testimonial-card {
    background: #fff9f9;
    border-radius: 20px;
    padding: 66px 86px;
    max-width: 1066px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.testimonial-name {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #262626;
    opacity: 0.89;
}

.testimonial-role {
    font-size: 16px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #262626;
    opacity: 0.56;
    margin-top: 4px;
}

.testimonial-quote-icon {
    margin-top: 20px;
    width: 33px;
    height: auto;
}

.testimonial-quote-icon img {
    object-fit: cover;
    display: block;
}

.testimonial-quote {
    font-size: 48px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #14313a;
    line-height: normal;
    margin-top: 20px;
    max-width: 894px;
}

/* =============================================
   Expert Perspective Section [04]
   ============================================= */
.expert-section {
    padding: 80px 0;
}

.expert-inner {
    display: flex;
    gap: 161px;
    align-items: center;
}

.expert-text {
    flex: 0 0 600px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.expert-label {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #a4a4a4;
    font-family: var(--font-family);
    font-weight: 400;
}

.expert-label-num,
.expert-label-text {
    line-height: normal;
}

.expert-title {
    font-size: 48px;
    font-family: var(--font-family);
    font-weight: 400;
    line-height: normal;
}

.expert-title-dark {
    color: #064666;
}

.expert-title-green {
    color: #00ffa3;
}

.expert-body {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #2f2f2f;
    line-height: normal;
}

.expert-quote {
    font-size: 32px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #2f2f2f;
    line-height: normal;
}

.expert-image {
    flex: 0 0 519px;
    height: 564px;
    border-radius: 20px;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =============================================
   Discover More Section [05]
   ============================================= */
.discover-section {
    padding: 80px 0 100px;
}

.discover-inner {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.discover-label {
    flex: 0 0 311px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: #a4a4a4;
    font-family: var(--font-family);
    font-weight: 400;
}

.discover-label-num,
.discover-label-text {
    line-height: normal;
}

.discover-cards {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.discover-card {
    width: 305px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.discover-card-image {
    width: 305px;
    height: 177px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    margin-bottom: 21px;
}

.discover-card--active .discover-card-image {
    border-color: #00ffa3;
    box-shadow: 0 4px 13.3px 0 rgba(0, 255, 163, 0.16);
}

.discover-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.discover-card-text {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.discover-card-cat {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #064666;
    line-height: normal;
}

.discover-card:not(.discover-card--active) .discover-card-cat {
    color: #2f2f2f;
}

.discover-card-title {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #064666;
    line-height: normal;
}

.discover-card:not(.discover-card--active) .discover-card-title {
    color: #2f2f2f;
}

/* =============================================
   CTA Banner Section
   ============================================= */
.cta-banner-section {
    padding: 60px 0 100px;
}

.cta-banner {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    background: #f9fdff;
    border: 1px solid #26ffb1;
    border-radius: 20px;
    backdrop-filter: blur(17.5px);
    overflow: hidden;
    min-height: 200px;
}

.cta-banner-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 597px;
    position: relative;
    z-index: 2;
    padding: 48px 60px;
}

.cta-banner-title {
    font-size: 32px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #064666;
    line-height: normal;
}

.cta-banner-desc {
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    color: #2f2f2f;
    line-height: normal;
    max-width: 436px;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #19d08e 0%, #26ffb1 100%);
    color: #fff;
    font-size: 20px;
    font-family: var(--font-family);
    font-weight: 700;
    text-decoration: none;
    border-radius: 58px;
    padding: 10px 32px;
    height: 42px;
    white-space: nowrap;
    width: fit-content;
    transition: opacity 0.2s;
}

.cta-banner-btn:hover {
    opacity: 0.88;
}

.cta-banner-btn img {
    width: 20px;
    height: 20px;
    display: block;
}

.cta-banner-visual {
    position: relative;
    flex-shrink: 0;
    width: 362px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
}

.cta-banner-start {
    position: absolute;
    right: -10px;
    bottom: -30px;
    font-size: 200px;
    font-family: var(--font-family);
    font-weight: 700;
    color: #bcebda;
    opacity: 0.5;
    line-height: 1;
    letter-spacing: -3px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.cta-banner-img {
    position: absolute;
    z-index: 2;
    width: 362px;
    height: auto;
    object-fit: cover;
    display: block;
    top: -40%;
    left: 60%;
}

/* =============================================
   Responsive – Tablet (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {

    /* Hero */
    .chitiet-hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .chitiet-hero-content {
        max-width: 100%;
    }

    .chitiet-title {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .chitiet-hero-stats {
        min-width: 100%;
        padding-top: 0;
    }

    .chitiet-watermark span {
        font-size: 120px;
        letter-spacing: -2px;
    }

    /* Image section */
    .chitiet-image-section {
        padding: 30px 0 60px;
    }

    .chitiet-main-image {
        border-radius: 16px;
    }

    .chitiet-star-deco {
        right: -40px;
        width: 200px;
    }

    /* Process + Result */
    .process-section {}

    .process-steps {
        gap: 20px;
    }

    .process-card {
        padding: 14px 20px;
        min-height: 200px;
    }

    .process-card-name {
        font-size: 36px;
    }

    .process-card-desc {
        font-size: 18px;
    }

    .process-slider-nav {
        margin: 20px 0 60px;
    }

    .result-header {
        margin-bottom: 50px;
    }

    .result-title {
        font-size: 36px;
    }

    .result-stat-number {
        font-size: 80px;
        letter-spacing: -4px;
    }

    .result-stat-label {
        font-size: 18px;
    }

    /* Solutions */
    .solutions-section {
        padding: 60px 0;
    }

    .solutions-inner {
        flex-direction: column;
        gap: 24px;
    }

    .solutions-content {
        max-width: 100%;
    }

    .solutions-title {
        font-size: 36px;
    }

    .solutions-desc {
        font-size: 18px;
    }

    /* Problem */
    .problem-section {
        padding: 60px 0 80px;
    }

    .problem-content {
        flex-direction: column;
        gap: 40px;
    }

    .problem-image {
        width: 100%;
        height: auto;
        aspect-ratio: 311 / 397;
        max-width: 400px;
    }

    .problem-text-blocks {
        max-width: 100%;
    }

    .problem-title {
        font-size: 36px;
    }

    .problem-block-title,
    .problem-block-body {
        font-size: 18px;
    }

    /* Before / After */
    .before-after-section {
        padding: 60px 0;
    }

    .ba-row {
        gap: 40px;
        margin-bottom: 60px;
    }

    .ba-text {
        flex: 1;
    }

    .ba-title {
        font-size: 28px;
    }

    .ba-desc {
        font-size: 18px;
    }

    .ba-image {
        flex: 0 0 45%;
        height: 260px;
    }

    /* Testimonial */
    .testimonial-section {
        padding: 40px 0 60px;
    }

    .testimonial-card {
        padding: 40px 40px;
    }

    .testimonial-quote {
        font-size: 36px;
    }

    /* Expert */
    .expert-section {
        padding: 60px 0;
    }

    .expert-inner {
        flex-direction: column;
        gap: 40px;
    }

    .expert-text {
        flex: unset;
        width: 100%;
    }

    .expert-title {
        font-size: 36px;
    }

    .expert-body {
        font-size: 18px;
    }

    .expert-quote {
        font-size: 26px;
    }

    .expert-image {
        flex: unset;
        width: 100%;
        height: auto;
        aspect-ratio: 519 / 564;
    }

    /* Discover */
    .discover-section {
        padding: 60px 0 80px;
    }

    .discover-inner {
        flex-direction: column;
        gap: 24px;
    }

    .discover-label {
        flex: unset;
    }

    .discover-cards {
        flex-wrap: wrap;
    }

    .discover-card {
        width: calc(50% - 8px);
    }

    .discover-card-image {
        width: 100%;
    }

    /* CTA */
    .cta-banner-section {
        padding: 40px 0 80px;
    }

    .cta-banner-text {
        padding: 32px 36px;
    }

    .cta-banner-title {
        font-size: 26px;
    }

    .cta-banner-desc {
        font-size: 18px;
    }

    .cta-banner-visual {
        width: 260px;
    }

    .cta-banner-start {
        font-size: 140px;
    }

    .cta-banner-img {
        width: 260px;
    }
}

/* =============================================
   Responsive – Mobile (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {

    /* Hero */
    .chitiet-hero {
        padding: 16px 0 40px;
    }

    .chitiet-hero-inner {
        gap: 32px;
    }

    .chitiet-title {
        font-size: 24px;
        letter-spacing: -0.8px;
    }

    .chitiet-tag {
        font-size: 14px;
        padding: 3px 12px;
    }

    .chitiet-hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .chitiet-watermark span {
        font-size: 80px;
        letter-spacing: -1px;
    }

    /* Image section */
    .chitiet-image-section {
        padding: 20px 0 40px;
    }

    .chitiet-main-image {
        border-radius: 12px;
    }

    .chitiet-star-deco {
        display: none;
    }

    /* Process + Result */
    .process-section {
        padding: 40px 0 60px;
        overflow: hidden;
    }

    .process-steps {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
    }

    .process-circle-deco {
        display: block;
        width: 320px;
        top: 20px;
        opacity: 0.6;
    }

    .process-card {
        padding: 16px 20px;
        min-height: auto;
        width: 100%;
    }

    .process-card-name {
        font-size: 28px;
    }

    .process-card-desc {
        font-size: 16px;
    }

    .process-slider-nav {
        margin: 16px 0 40px;
    }

    .result-header {
        margin-bottom: 36px;
    }

    .result-title {
        font-size: 28px;
    }

    .result-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .result-stat {
        flex: 0 0 calc(100%);
        gap: 16px;
    }

    .result-stat-number {
        font-size: 72px;
        letter-spacing: -3px;
    }

    .result-stat-label {
        font-size: 16px;
    }

    /* Solutions */
    .solutions-section {
        padding: 40px 0;
    }

    .solutions-title {
        font-size: 28px;
    }

    .solutions-desc {
        font-size: 16px;
    }

    /* Problem */
    .problem-section {
        padding: 40px 0 60px;
    }

    .problem-header {
        margin-bottom: 36px;
    }

    .problem-title {
        font-size: 28px;
    }

    .problem-content {
        gap: 32px;
    }

    .problem-image {
        max-width: 100%;
    }

    .problem-block-title,
    .problem-block-body {
        font-size: 16px;
    }

    /* Before / After */
    .before-after-section {
        padding: 40px 0;
    }

    .ba-row {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 48px;
    }

    .ba-text {
        flex: unset;
        width: 100%;
    }

    .ba-title {
        font-size: 24px;
    }

    .ba-desc {
        font-size: 16px;
    }

    .ba-image {
        flex: unset;
        width: 100%;
        height: auto;
        aspect-ratio: 600 / 313;
    }

    /* Testimonial */
    .testimonial-section {
        padding: 32px 0 40px;
    }

    .testimonial-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .testimonial-name {
        font-size: 18px;
    }

    .testimonial-role {
        font-size: 14px;
    }

    .testimonial-quote {
        font-size: 24px;
    }

    /* Expert */
    .expert-section {
        padding: 40px 0;
    }

    .expert-inner {
        gap: 32px;
    }

    .expert-title {
        font-size: 28px;
    }

    .expert-body {
        font-size: 16px;
    }

    .expert-quote {
        font-size: 22px;
    }

    /* Discover */
    .discover-section {
        padding: 40px 0 60px;
    }

    .discover-cards {
        flex-direction: column;
    }

    .discover-card {
        width: 100%;
    }

    .discover-card-image {
        width: 100%;
        height: auto;
        aspect-ratio: 305 / 177;
    }

    .discover-card-cat,
    .discover-card-title {
        font-size: 18px;
    }

    /* CTA */
    .cta-banner-section {
        padding: 40px 0 80px;
        overflow: hidden;
    }

    .cta-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .cta-banner-text {
        padding: 40px 20px;
        align-items: center;
        max-width: 100%;
    }

    .cta-banner-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .cta-banner-desc {
        font-size: 16px;
        max-width: 280px;
        margin: 0 auto;
    }

    .cta-banner-btn {
        font-size: 18px;
        padding: 8px 24px;
        height: 40px;
        margin: 0 auto;
    }

    .cta-banner-visual {
        width: 100%;
        height: 140px;
        justify-content: center;
    }

    .cta-banner-start {
        font-size: 80px;
        right: 50%;
        transform: translateX(50%);
        bottom: -10px;
        opacity: 0.3;
    }

    .cta-banner-img {
        width: 220px;
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        z-index: 3;
    }
}


/* ---- PROJECTS SECTION ---- */
.ctm-projects-section {
    padding: 80px 0 100px;
}

.ctm-projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.ctm-projects-heading {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -2.4px;
    color: #262626;
    max-width: 505px;
}

.ctm-projects-link {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #14313A;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ctm-projects-link:hover {
    color: #00D88A;
}

.ctm-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

a.ctm-project-card {
    text-decoration: none;
    color: inherit;
}

.ctm-project-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctm-project-img {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.ctm-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.ctm-project-card:hover .ctm-project-img img {
    transform: scale(1.05);
}

.ctm-project-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ctm-project-name {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
    color: #000;
    transition: color 0.3s ease;
}

.ctm-project-card:hover .ctm-project-name {
    background: var(--gradient, linear-gradient(90deg, #19D08E 0%, #26FFB1 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ctm-project-desc {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #262626;
}

.ctm-project-desc strong {
    font-weight: 700;
}

.ctm-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ctm-project-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    background: #E8F5EC;
    color: #1A7A3C;
    font-family: 'Google Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

/* ---- PROJECTS SECTION RESPONSIVE ---- */
@media screen and (max-width: 1200px) {
    .ctm-projects-heading {
        font-size: 36px;
        letter-spacing: -1.8px;
    }

    .ctm-projects-section {
        padding: 60px 0 80px;
    }
}

@media screen and (max-width: 992px) {
    .ctm-projects-heading {
        font-size: 32px;
    }

    .ctm-projects-link {
        font-size: 17px;
    }

    .ctm-project-name {
        font-size: 24px;
    }

    .ctm-project-desc {
        font-size: 17px;
    }
}

@media screen and (max-width: 768px) {
    .ctm-projects-section {
        padding: 40px 0 60px;
    }

    .ctm-projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .ctm-projects-heading {
        font-size: 28px;
        letter-spacing: -1.2px;
        max-width: 100%;
    }

    .ctm-projects-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ctm-project-name {
        font-size: 22px;
    }

    .ctm-project-desc {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .ctm-projects-section {
        padding: 30px 0 40px;
    }

    .ctm-projects-heading {
        font-size: 22px;
        letter-spacing: -1px;
    }

    .ctm-projects-link {
        font-size: 15px;
    }

    .ctm-project-name {
        font-size: 20px;
    }

    .ctm-project-desc {
        font-size: 15px;
    }

    .ctm-project-tag {
        font-size: 12px;
        padding: 3px 10px;
    }
}