/* Technology Consulting & Digital Transformation Page */

/* ========== Hero (Figma 779-2777) ========== */
.tc-hero {
    position: relative;
    width: 100%;
    min-height: 440px;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 6%;
}

.tc-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.tc-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tc-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.tc-hero .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tc-hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tc-hero-title {
    font-family: var(--font-family);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0 0 20px;
}

.tc-hero-subtitle {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 28px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.tc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1f2937;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
}

.tc-hero-cta:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.tc-hero-cta-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .tc-hero {
        min-height: 320px;
        padding: 36px 5%;
    }

    .tc-hero-title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .tc-hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .tc-hero-cta {
        padding: 14px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tc-hero {
        min-height: 280px;
        padding: 28px 4%;
    }

    .tc-hero-title {
        font-size: 24px;
    }
}

/* ========== Key Challenges (Figma 780-3115) ========== */
.tc-section {
    padding: 72px 6% 80px;
    width: 100%;
    box-sizing: border-box;
}

.tc-section-light {
    background: #f5f5f6;
}

.tc-section-dark {
    background: #0f172b;
    color: #fff;
}

.tc-section-dark .tc-section-title,
.tc-section-dark .tc-section-desc {
    color: rgba(255, 255, 255, 0.95);
}

.tc-section-dark .tc-section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.tc-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.tc-challenges-section .tc-section-header {
    max-width: 100%;
}

.tc-section-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px;
}

.tc-section-title.tc-title-dark {
    color: #111;
}

.tc-section-desc {
    font-size: 16px;
    line-height: 26px;
    margin: 0;
}

.tc-section-desc.tc-desc-dark {
    color: #4b5563;
}

.tc-challenges-section .container {
    max-width: var(--container-width, 1440px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.tc-challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 0 40px;
    width: 100%;
}

.tc-challenge-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.tc-challenges-section .card-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tc-challenges-section .bg-orange-dark {
    background-color: rgba(232, 92, 41, 0.1);
}

.tc-challenges-section .card-icon {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto;
    object-fit: contain;
    object-position: center;
}

.tc-challenge-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px;
}

.tc-challenge-arrow {
    margin: 8px 0 12px;
    display: flex;
    justify-content: center;
}

.tc-challenge-arrow img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.tc-challenge-desc {
    font-size: 14px;
    line-height: 22px;
    color: #4b5563;
    margin: 0;
}

.tc-challenges-cta-wrap {
    text-align: center;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: #e85d2a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-orange:hover {
    background-color: #d64d1f;
    transform: translateY(-1px);
}

.tc-challenges-cta-icon {
    width: 18px;
    height: 18px;
}

/* ========== Technology Consulting (Figma 780-2943) ========== */
.tc-consulting-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tc-consulting-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.tc-consulting-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tc-consulting-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 16px;
}

.tc-consulting-intro {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
}

.tc-consulting-bullets {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.tc-consulting-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.tc-consulting-bullets li:last-child {
    margin-bottom: 0;
}

.tc-consulting-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.tc-consulting-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    background: #e85d2a;
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.tc-consulting-cta:hover {
    background: #d64d1f;
    transform: translateY(-1px);
}

.tc-consulting-cta-icon {
    width: 18px;
    height: 18px;
}

/* Right: vertical timeline with numbered steps + cards */
.tc-consulting-right {
    position: relative;
}

.tc-consulting-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tc-consulting-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: center;
    position: relative;
}

.tc-consulting-step:not(:last-child) {
    margin-bottom: 24px;
}

/* Numbered circle + vertical line */
.tc-consulting-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e85d2a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.tc-consulting-step:not(:last-child) .tc-consulting-step-num::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #e85d2a 0%, rgba(232, 93, 42, 0) 100%);
    z-index: 1;
}

.tc-consulting-step-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-consulting-step-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

.tc-consulting-step-body {
    flex: 1;
}

.tc-consulting-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.tc-consulting-step-desc {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ========== Future-Ready Digital Roadmaps (Figma 780-3267) ========== */
.tc-roadmaps-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tc-roadmaps-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.tc-roadmaps-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.06);
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
    margin: 0 0 16px;
}

.tc-roadmaps-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e85d2a;
}

.tc-roadmaps-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin: 0 0 12px;
}

.tc-roadmaps-subtitle {
    font-size: 16px;
    line-height: 26px;
    color: #4b5563;
    margin: 0;
}

.tc-roadmaps-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.tc-roadmaps-step {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Connector line at vertical center between cards */
.tc-roadmaps-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: linear-gradient(to right, #e85d2a 0%, rgba(232, 93, 42, 0.3) 50%, rgba(232, 93, 42, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.tc-roadmaps-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 32px 20px 24px;
    padding-top: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 220px;
}

.tc-roadmaps-card-tall {
    min-height: 260px;
}

/* Number circle at top-right corner of card */
.tc-roadmaps-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e85d2a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tc-roadmaps-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(232, 92, 41, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Outer pale circle (two-circle bg per design) */
.tc-roadmaps-icon-wrap::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(232, 92, 41, 0.08);
    z-index: -1;
}

/* Darker inner circle around icon (smaller radius) */
.tc-roadmaps-icon-wrap::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(232, 92, 41, 0.082);
    z-index: 0;
}

.tc-roadmaps-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.tc-roadmaps-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.3;
}

.tc-roadmaps-card-desc {
    font-size: 14px;
    line-height: 22px;
    color: #4b5563;
    margin: 0;
}

/* ========== Launch Your IT Foundation (Figma 783-5578) ========== */
.tc-it-foundation-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tc-it-foundation-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 40px;
}

.tc-it-foundation-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 12px;
}

.tc-it-foundation-subtitle {
    font-size: 16px;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.tc-it-foundation-services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.tc-it-foundation-service-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-it-foundation-check {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 12px;
}

.tc-it-foundation-service-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
}

.tc-it-foundation-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(232, 92, 41, 0.3);
}

.tc-it-foundation-pricing-left {
    flex: 1;
}

.tc-it-foundation-pricing-from {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 4px;
}

.tc-it-foundation-pricing-main {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.tc-it-foundation-price {
    color: #e85d2a;
}

.tc-it-foundation-pricing-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.tc-it-foundation-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e85d2a;
    color: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    flex-shrink: 0;
}

.tc-it-foundation-btn:hover {
    background: #d64d1f;
    transform: translateY(-1px);
}

.tc-it-foundation-btn-icon {
    width: 18px;
    height: 18px;
}

.tc-it-foundation-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tc-it-foundation-summary-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tc-it-foundation-summary-value {
    font-size: 28px;
    font-weight: 700;
    color: #e85d2a;
    margin-bottom: 4px;
}

.tc-it-foundation-summary-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== Our Advisory Services (Figma 780-4068) ========== */
.tc-advisory-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.tc-advisory-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.tc-advisory-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.25;
    color: #111;
    margin: 0 0 12px;
}

.tc-advisory-subtitle {
    font-size: 16px;
    line-height: 26px;
    color: #4b5563;
    margin: 0;
}

.tc-advisory-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 32px;
}

.tc-advisory-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
    height: 100%;
}

.tc-advisory-card {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex: 1;
    min-height: 0;
}

.tc-advisory-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(232, 92, 41, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-advisory-card-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tc-advisory-card-body {
    flex: 1;
}

.tc-advisory-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #111;
    margin: 0 0 8px;
}

.tc-advisory-card-desc {
    font-size: 14px;
    line-height: 22px;
    color: #4b5563;
    margin: 0;
}

.tc-advisory-transform-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tc-advisory-transform-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 24px;
    text-align: center;
}

.tc-advisory-before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 24px;
}

.tc-advisory-col {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.tc-advisory-badge-wrap {
    text-align: center;
    margin-bottom: 10px;
}

.tc-advisory-col > .tc-advisory-bullets {
    margin-top: 14px;
    padding-left: 18px;
    align-self: stretch;
}

.tc-advisory-panel {
    border-radius: 12px;
    padding: 16px 18px 18px 18px;
}

.tc-advisory-panel-before {
    background: #fff;
    border: 1px solid #e5e7eb;
}

.tc-advisory-panel-before .tc-advisory-state-icon,
.tc-advisory-panel-before .tc-advisory-subcard-icon {
    filter: grayscale(100%);
    opacity: 0.65;
}

.tc-advisory-panel-after {
    background: rgba(232, 92, 41, 0.06);
    border: 1px solid rgba(232, 92, 41, 0.4);
    position: relative;
}

.tc-advisory-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 8px;
}

.tc-advisory-badge-before {
    background: #e5e7eb;
    color: #4b5563;
}

.tc-advisory-badge-after {
    background: #e85d2a;
    color: #fff;
}

.tc-advisory-state-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 14px;
}

.tc-advisory-state-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.tc-advisory-panel-after .tc-advisory-state-title {
    color: #111;
}

.tc-advisory-panel-after .tc-advisory-subcard {
    background: rgba(232, 92, 41, 0.2); /* 20% opacity of #E85C29 */
    border-color: rgba(232, 92, 41, 0.25);
}

.tc-advisory-subcards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}

.tc-advisory-subcard {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: #111;
}

.tc-advisory-subcard-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.tc-advisory-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tc-advisory-bullets li {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
    color: #374151;
}

.tc-advisory-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #dc2626;
}

.tc-advisory-arrow-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    align-self: start;
    margin-top: 130px;
}

.tc-advisory-arrow-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e85d2a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-advisory-arrow {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: block;
}

.tc-advisory-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.tc-advisory-metric {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.tc-advisory-metric-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #e85d2a;
    margin-bottom: 4px;
}

.tc-advisory-metric-label {
    font-size: 13px;
    color: #374151;
}

.tc-advisory-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.tc-advisory-cta-card {
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
}

.tc-advisory-cta-orange {
    background: #e85d2a;
    color: #fff;
}

.tc-advisory-cta-orange .tc-advisory-cta-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
}

.tc-advisory-cta-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: fit-content;
    text-align: left;
}

.tc-advisory-cta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.tc-advisory-cta-list li:last-child {
    margin-bottom: 0;
}

.tc-advisory-cta-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}

.tc-advisory-cta-orange .tc-advisory-cta-check {
    filter: brightness(0) invert(1);
}

.tc-advisory-cta-dark {
    background: #0f172b;
    color: #fff;
}

.tc-advisory-cta-dark .tc-advisory-cta-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
}

.tc-advisory-cta-subtitle {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px;
}

.tc-advisory-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e85d2a;
    color: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}

.tc-advisory-cta-btn:hover {
    background: #d64d1f;
    transform: translateY(-1px);
}

.tc-advisory-cta-btn-icon {
    width: 18px;
    height: 18px;
}

.tc-advisory-cta-disclaimer {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.tc-advisory-cta-dark .tc-advisory-cta-subtitle {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* Domain, Email & Workspace Consulting (Figma 781-4860) */
.tc-workspace-section {
    background: #f0f0f2;
}

.tc-workspace-section .container {
    padding-left: 6%;
    padding-right: 6%;
}

.tc-workspace-steps-section {
    background: #fff;
    padding-bottom: 48px;
}

.tc-workspace-steps-section .container {
    padding-left: 6%;
    padding-right: 6%;
}

.tc-workspace-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.tc-workspace-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
    line-height: 1.25;
}

.tc-workspace-desc {
    font-size: 16px;
    line-height: 26px;
    color: #4b5563;
    margin: 0 0 24px;
}

.tc-workspace-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tc-workspace-steps {
    margin-bottom: 56px;
}

.tc-workspace-steps-title {
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 700;
    color: #111;
    text-align: center;
    margin: 0 0 8px;
}

.tc-workspace-steps-subtitle {
    font-size: 16px;
    color: #4b5563;
    text-align: center;
    margin: 0 0 32px;
}

.tc-workspace-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tc-workspace-card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.tc-workspace-card-num {
    position: absolute;
    top: -10px;
    left: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.tc-workspace-card-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(232, 92, 41, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0 16px;
    flex-shrink: 0;
}

.tc-workspace-card-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tc-workspace-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.3;
}

.tc-workspace-card-desc {
    font-size: 14px;
    line-height: 22px;
    color: #4b5563;
    margin: 0 0 16px;
}

.tc-workspace-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tc-workspace-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 8px;
}

.tc-workspace-card-list li:last-child {
    margin-bottom: 0;
}

.tc-workspace-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Full-width CTA banner (same as dx-cta-banner) */
.tc-workspace-cta-banner {
    background: var(--primary-color);
    padding: 64px 6%;
}

.tc-workspace-cta-banner-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.tc-workspace-cta-banner-title {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.25;
}

.tc-workspace-cta-banner-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 28px;
}

.tc-workspace-cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.tc-workspace-cta-banner-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .tc-section {
        padding: 48px 6% 56px;
    }

    .tc-challenges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .tc-consulting-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tc-consulting-left {
        order: 1;
    }

    .tc-consulting-right {
        order: 2;
    }

    .tc-roadmaps-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 20px;
    }

    .tc-roadmaps-step:not(:last-child)::after {
        display: none;
    }

    .tc-it-foundation-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 24px;
    }

    .tc-it-foundation-pricing {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 24px 20px;
    }

    .tc-it-foundation-pricing-cta .tc-it-foundation-btn {
        width: 100%;
        justify-content: center;
    }

    .tc-it-foundation-summary {
        grid-template-columns: 1fr;
    }

    .tc-advisory-layout {
        grid-template-columns: 1fr;
    }

    .tc-advisory-before-after {
        grid-template-columns: 1fr;
    }

    .tc-advisory-arrow-wrap {
        margin-top: 10px;
        padding: 12px 0;
    }

    .tc-advisory-arrow {
        transform: rotate(90deg);
    }

    .tc-advisory-metrics {
        grid-template-columns: 1fr;
    }

    .tc-advisory-cta-row {
        grid-template-columns: 1fr;
    }

    .tc-workspace-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tc-workspace-intro {
        margin-bottom: 24px;
    }

    .tc-workspace-steps {
        margin-bottom: 40px;
    }

    .tc-workspace-cta-banner {
        padding: 48px 6%;
    }
}

@media (max-width: 480px) {
    .tc-section {
        padding: 40px 6% 48px;
    }

    .tc-challenge-card {
        padding: 22px 20px;
    }

    .tc-challenges-cta-wrap .btn-orange {
        width: 100%;
        justify-content: center;
    }

    .tc-consulting-cta {
        width: 100%;
        justify-content: center;
    }

    .tc-roadmaps-cards {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tc-roadmaps-step:not(:last-child)::after {
        display: none;
    }

    .tc-it-foundation-services {
        grid-template-columns: 1fr;
    }

    .tc-it-foundation-service-card {
        padding: 20px 16px;
    }

    .tc-advisory-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .tc-workspace-cta {
        width: 100%;
        justify-content: center;
    }

    .tc-workspace-cta-banner-btn {
        width: 100%;
        justify-content: center;
    }
}
