:root {
    --primary-gradient: linear-gradient(90deg, #19D08E 0%, #26FFB1 100%);
    --primary-color: #26FFB1;
    --text-dark: #262626;
    --text-muted: rgba(47, 47, 47, 0.6);
    --white: #FFFFFF;
    --font-heading: 'Google Sans', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

.hero-section {
    position: relative;
    padding-bottom: 80px;
    padding-top: 16px;
    background-color: #f8fcf9;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 10;
}

/* Breadcrumb */
.gg-breadcrumb-nav {
    margin-bottom: 40px;
}

.gg-breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.gg-breadcrumb-item a {
    text-decoration: none;
    color: rgba(47, 47, 47, 0.6);
    transition: color 0.3s ease;
}

.gg-breadcrumb-item a:hover {
    color: #00D88A;
}

.gg-breadcrumb-separator {
    margin: 0 8px;
    color: rgba(47, 47, 47, 0.4);
}

.gg-breadcrumb-item.active {
    color: rgba(47, 47, 47, 0.8);
}

/* Hero Content */
.hero-content {
    flex: 0 0 600px;
    max-width: 100%;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-heading .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 580px;
}

/* Hero Button */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: var(--primary-gradient);
    border-radius: 58px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(25, 208, 142, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(25, 208, 142, 0.4);
}

.btn-icon {
    width: 14px;
    height: 17px;
}

/* Hero Graphic */
.hero-graphic {
    flex: 1;
    position: relative;
    max-width: 680px;
}

.hero-blur-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 520px;
    height: 560px;
    background: linear-gradient(-37deg, rgba(25, 208, 142, 0.6) 3%, rgba(38, 255, 177, 0.6) 96%);
    filter: blur(45px);
    border-radius: 35px;
    z-index: 1;
}

.hero-main-img-wrap {
    position: relative;
    z-index: 2;
    border-radius: 31px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-main-img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
}

/* Hero BG Decoration */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    opacity: 0.1;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-content {
        flex: 0 0 500px;
    }
}

@media (max-width: 991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 32px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-btn {
        width: 100%;
        padding: 16px 20px;
    }
}

/* Business Stages Section */
.stages-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.stages-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.stage-card {
    position: relative;
    background: #FBFBFB;
    border: 1.25px solid rgba(6, 70, 102, 0.1);
    border-radius: 20px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: default;
}

.stage-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(6, 70, 102, 0.2);
    transform: translateY(-5px);
}

.stage-card-content {
    position: relative;
    z-index: 2;
}

.stage-card-text {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.4;
    color: #064666;
    margin-bottom: 30px;
}

.stage-card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.stage-card-footer a:hover {
    background-color: #00FFA3;
}

.stage-card-footer a {
    padding: 10px;
    border-radius: 13px;
    background-color: #fff;
    border: 1px solid #064666;
    text-decoration: none;
    color: #000000;
}

.footer-label {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #8F8F8F;
}

.footer-service {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: #000000;
}

.stage-card-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .stages-title {
        font-size: 38px;
    }

    .stage-card-text {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .stages-grid {
        grid-template-columns: 1fr;
        max-width: 624px;
    }
}

@media (max-width: 576px) {
    .stages-title {
        font-size: 30px;
    }

    .stage-card {
        padding: 32px 24px;
        min-height: auto;
    }

    .stage-card-text {
        font-size: 20px;
    }

    .footer-label {
        font-size: 16px;
    }

    .footer-service {
        font-size: 18px;
    }
}

/* Service Details Section */
.service-details {
    background-color: #ffffff;
}

.service-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.service-row--reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 0 0 500px;
}

.service-category {
    font-family: var(--font-heading);
    font-size: 16px;
    color: #A4A4A4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #064666;
    margin-bottom: 20px;
    line-height: 1.25;
}

.service-info {
    margin-bottom: 40px;
}

.service-info p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #2F2F2F;
    margin-bottom: 12px;
}

.service-info p strong {
    color: #064666;
}

/* Dark Button */
.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background-color: #14313A;
    border-radius: 58px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #0d2127;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 49, 58, 0.3);
}

.btn-icon {
    width: 17px;
    height: 14px;
}

.service-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .service-content {
        flex: 0 0 450px;
    }
}

@media (max-width: 991px) {

    .service-row,
    .service-row--reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .service-content {
        flex: 1;
        max-width: 100%;
    }

    .service-container {
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .service-title {
        font-size: 26px;
    }

    .service-info p {
        font-size: 16px;
    }

    .btn-dark {
        width: 100%;
        padding: 14px 20px;
        font-size: 18px;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.comparison-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    margin-bottom: 60px;
    max-width: 800px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    /* Horizontal scroll for mobile */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    /* Space for scrollbar */
}

.comparison-table {
    width: 100%;
    min-width: 900px;
    /* Force minimum width to prevent squishing on small screens */
    border-collapse: collapse;
    border: 1px solid #D0D0D0;
}

.comparison-table th,
.comparison-table td {
    padding: 24px 32px;
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    width: 33.33%;
    border-bottom: 1px solid #D0D0D0;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #F3F3F3;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: #FFFFFF;
}

.comparison-table td {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.4;
}

.comparison-table td.td-title {
    font-weight: 700;
}

/* Responsive Comparison */
@media (max-width: 1200px) {
    .comparison-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .comparison-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .comparison-table th {
        font-size: 24px;
        padding: 20px;
    }

    .comparison-table td {
        font-size: 18px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .comparison-section {
        padding: 60px 0;
    }

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



/* --- Solution Section --- */
.gg2-solution {
    position: relative;
    overflow: hidden;
    background: #f0faf5;
    z-index: 0;
}

.gg2-solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.gg2-solution-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gg2-solution-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.gg2-solution-badge {
    padding: 4px 16px;
    background: #bcebda;
    border-radius: 10px;
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #828282;
    width: fit-content;
}

.gg2-solution-title {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    letter-spacing: -2.4px;
    color: #262626;
    margin-bottom: 60px;
}

.gg2-solution-title-green {
    display: block;
    background: linear-gradient(to right, #19d08e, #26ffb1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gg2-solution-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.gg2-solution-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: all 0.3s ease;
}

.gg2-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.gg2-solution-card-icon {
    width: 125px;
    height: 107px;
    flex-shrink: 0;
}

.gg2-solution-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gg2-solution-card-body {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.gg2-solution-card-title {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 27px;
    line-height: 1.2;
    color: #064666;
}

.gg2-solution-card-list {
    list-style: disc;
    padding-left: 27px;
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #064666;
    margin: 0;
}

.gg2-solution-card-list li+li {
    margin-top: 8px;
}

/* --- Solution Pin Decoration --- */
.gg2-solution-pin-decor {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 475px;
    height: 688px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
}

.gg2-solution-pin-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
}

.gg2-solution-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1510px;
    height: 820px;
    background: #edfff8;
    border-radius: 74px;
    z-index: 1;
}

.gg2-solution-card-list li strong {
    font-weight: 700;
}

.gg2-audience-card-body {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

/* --- Responsive Solution & Audience --- */
@media (max-width: 1024px) {
    .gg2-solution {
        padding: 300px 0 80px;
    }

    .gg2-solution-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gg2-solution-title {
        font-size: 36px;
    }

    .gg2-solution-pin-decor {
        display: none;
    }

    .gg2-audience-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .gg2-solution {
        padding: 200px 0 60px;
    }

    .gg2-solution-title {
        font-size: 28px;
    }

    .gg2-solution-card {
        padding: 32px 24px;
    }

    .gg2-audience-card {
        padding: 32px 24px;
        min-height: auto;
    }

    .gg2-audience {
        padding: 60px 0;
    }
}


/* ===== Process Section ===== */
.gg-process {
    padding: 80px 0;
}

.gg-process-layout {
    display: flex;
    gap: 60px;
}

.gg-process-label {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark, #262626);
    line-height: 1.5;
    flex-shrink: 0;
    width: 212px;
    padding-top: 10px;
}

.gg-process-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.gg-process-step-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.gg-process-number {
    font-family: 'SF Pro Display', 'Google Sans', sans-serif;
    font-size: 106px;
    font-weight: 200;
    line-height: 0.85;
    background: linear-gradient(180deg, #000 13.68%, #FAFAFA 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.gg-process-step:hover .gg-process-number {
    background: linear-gradient(90deg, #19D08E 0%, #26FFB1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gg-process-step-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    padding-top: 25px;
}

.gg-process-step {
    transition: transform 0.3s ease;
}

.gg-process-step:hover {
    transform: translateY(-5px);
}

.gg-process-step-desc {
    font-family: 'Google Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    text-align: justify;
    max-width: 440px;
}

.gg-process-divider {
    grid-column: 1;
    display: flex;
    align-items: center;
}

.gg-process-divider img {
    width: 100%;
    max-width: 376px;
    height: 1px;
}

.gg-process-trophy {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gg-process-trophy img {
    width: 258px;
    height: 354px;
    object-fit: cover;
}

/* Row layout: step1+step2 on row1, divider+trophy span row2-3, step3 on row2 */
.gg-process-grid {
    grid-template-rows: auto auto auto;
}

.gg-process-step:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.gg-process-step:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.gg-process-divider {
    grid-column: 1;
    grid-row: 2;
}

.gg-process-step--with-image {
    grid-column: 1;
    grid-row: 3;
}

.gg-process-trophy {
    grid-column: 2;
    grid-row: 2 / 4;
}

.gg-process-line img {
    width: 100%;
    height: 1px;
    background-color: #000;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .gg-hero-title {
        font-size: 36px;
        max-width: 100%;
    }

    .gg-hero-content {
        flex-direction: column;
    }

    .gg-hero-right {
        width: 100%;
        max-width: 400px;
    }

    .gg-hero-left {
        gap: 40px;
    }

    .gg-problems-title {
        font-size: 36px;
    }

    .gg-problem-card {
        flex-wrap: wrap;
        height: auto;
        padding: 20px 24px;
        gap: 12px;
    }

    .gg-problem-text {
        font-size: 20px;
        flex: 1;
        margin-left: 16px;
    }

    .gg-problem-btn {
        margin-left: auto;
        min-width: auto;
        font-size: 16px;
    }

    .gg-problem-icon {
        width: 60px;
        height: 60px;
    }

    .gg-services-title {
        font-size: 36px;
    }

    .gg-service-card {
        width: 300px;
        min-width: 300px;
        height: auto;
    }

    .gg-service-card-top {
        padding: 24px;
    }

    .gg-service-card-title {
        font-size: 22px;
    }

    .gg-service-card-list {
        font-size: 15px;
    }

    .gg-service-card-bottom {
        height: 260px;
    }

    .gg-why-title {
        font-size: 36px;
    }

    .gg-why-grid .gg-why-card:nth-child(1),
    .gg-why-grid .gg-why-card:nth-child(2),
    .gg-why-grid .gg-why-card:nth-child(3),
    .gg-why-grid .gg-why-card:nth-child(4) {
        flex: 0 0 100%;
    }

    .gg-why-card {
        height: 360px;
    }

    .gg-process-layout {
        flex-direction: column;
        gap: 30px;
    }

    .gg-process-label {
        width: 100%;
        text-align: center;
        padding-top: 0;
    }

    .gg-process-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 40px;
    }

    .gg-process-step:nth-child(n) {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .gg-process-divider {
        display: none;
    }

    .gg-process-trophy {
        grid-column: 1 !important;
        grid-row: auto !important;
        margin-top: 20px;
    }

    .gg-process-number {
        font-size: 72px;
    }

    .gg-process-step-title {
        font-size: 24px;
        padding-top: 15px;
    }

    .gg-process-step-desc {
        font-size: 18px;
        max-width: 100%;
        text-align: left;
    }
}


/* ---- 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;
}

.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: 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;
}


/* --- Testimonial Section --- */
.gg2-testimonial {
    padding: 80px 0;
    background: #fff;
}

.gg2-testimonial-card {
    background: #fff9f9;
    border-radius: 20px;
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gg2-testimonial-author {
    margin-bottom: 24px;
}

.gg2-testimonial-name {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: #262626;
    opacity: 0.89;
}

.gg2-testimonial-role {
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #262626;
    opacity: 0.56;
}

.gg2-testimonial-quote-mark {
    width: 33px;
    height: 23px;
    margin-bottom: 16px;
}

.gg2-testimonial-quote-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gg2-testimonial-text {
    font-family: 'Google Sans', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #14313a;
    max-width: 894px;
}


/* ---- CTA ---- */
.gt-cta-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.gt-cta-wrapper {
    position: relative;
    max-width: 1256px;
    height: 387px;
    margin: 0 auto;
}

.gt-cta-char {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.gt-cta-char--left {
    left: 0;
    top: 158px;
    width: 221px;
    height: 203px;
    object-fit: contain;
}

.gt-cta-char--right {
    right: 0;
    top: 0;
    width: 332px;
    height: 387px;
    object-fit: contain;
}

.gt-cta-card {
    position: absolute;
    left: 138px;
    top: 71px;
    width: 967px;
    height: 304px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #26FFB1;
    border-radius: 20px;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    z-index: 2;
    padding: 43px 51px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.gt-cta-content {
    /* Aligns with Figma x:189 which is 51px from card x:138 */
    position: relative;
}

.gt-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #064666;
    line-height: 1.25;
    margin-bottom: 16px;
    max-width: 678px;
}

.gt-cta-desc {
    font-size: 20px;
    font-weight: 400;
    color: #2F2F2F;
    line-height: 1.25;
    margin-bottom: 30px;
    max-width: 709px;
}

.gt-cta-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gt-cta-btn2 {
    color: #3F3F3F !important;
    background: linear-gradient(90deg, #BCBCBC 0%, #B8FFE5 100%) !important;
}

.gt-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 34px;
    height: 42px;
    padding: 0 32px;
    background: linear-gradient(90deg, #19D08E 0%, #26FFB1 100%);
    border-radius: 58px;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    width: fit-content;
    transition: opacity 0.2s;
}

.gt-cta-btn:hover {
    opacity: 0.9;
}

.gt-cta-btn-icon {
    width: 24px;
    height: 24px;
}

/* Responsive CTA */
@media (max-width: 1256px) {
    .gt-cta-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .gt-cta-char {
        display: none;
    }

    .gt-cta-card {
        position: static;
        width: 100%;
        height: auto;
        padding: 40px 20px;
    }
}

@media (max-width: 991px) {
    .ctm-projects-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ctm-projects-heading {
        font-size: 36px;
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .gg2-testimonial-card {
        padding: 40px 24px;
    }

    .gg2-testimonial-text {
        font-size: 28px;
    }

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

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

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

    .gt-cta-btn-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .gt-cta-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .gt-cta-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .gt-cta-btn {
        justify-content: center;
        width: 100%;
        font-size: 18px;
        gap: 15px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .gg-process-number {
        font-size: 60px;
    }

    .gg-process-step-title {
        font-size: 20px;
    }

    .gg-process-step-desc {
        font-size: 15px;
    }

    .gt-cta-title {
        font-size: 22px;
    }

    .gt-cta-card {
        padding: 30px 15px;
    }

    .gt-cta-btn {
        font-size: 16px;
    }
}