/* ========================================
   PAGE: Tech-Consulting
   Hero + value section styling
   ======================================== */

.it-consulting-page {
    background: #ffffff;
    color: #111111;
}

.it-consulting-main {
    display: block;
}

.it-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    padding: 120px 24px 96px;
    color: #ffffff;
    overflow: hidden;
}

.it-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("../../images/industries/motion-speed-effect-with-city-night.jpg") center/cover no-repeat;
    filter: grayscale(1) contrast(1.1) brightness(0.6);
    transform: scale(1.02);
    z-index: 0;
}

.it-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.12) 100%);
    z-index: 1;
}

.it-hero-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    margin-left: clamp(16px, 6vw, 96px);
}

.it-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.it-hero h1 {
    font-size: clamp(32px, 4.6vw, 56px);
    line-height: 1.08;
    font-weight: 600;
    margin: 0 0 18px;
}

.it-hero p {
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 28px;
}

.it-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #1b1b1b;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.it-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.it-value {
    padding: 56px 24px 84px;
    background: #ffffff;
}

.it-value h2 {
    font-size: clamp(20px, 3vw, 30px);
    margin: 0 0 30px;
    color: #1a1a1a;
}

.it-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.it-value-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.it-value-summary {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}


.it-value-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1f1f1f;
}

.it-value-summary h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 500;
    color: #000000;
}

.it-value-summary p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    font-weight: 350;
}

.it-value-arrow {
    transition: transform 0.2s ease;
}

.it-value-toggle[aria-expanded="true"] .it-value-arrow {
    transform: rotate(180deg);
}

.it-value-dropdown {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 60px 0 80px;
}

.it-value-dropdown>.container {
    width: 100%;
    max-width: 100%;
    padding-inline: 24px;
}

.it-value-dropdown-panel {
    display: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 44px 56px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    animation: itDropdownOpen 0.25s ease;
    text-align: left;
}

.it-value-dropdown-panel.is-active {
    display: block;
}

.it-value-dropdown-panel h3 {
    margin: 0 auto 12px;
    max-width: 760px;
    font-size: 26px;
    color: #000000;
    font-weight: 500;
}

.it-value-subtitle {
    margin: 0 auto 18px;
    max-width: 760px;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
}

.it-value-dropdown-panel p {
    margin: 0 auto 16px;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.8;
    color: #000000;
    font-weight: 350;
    text-align: justify;
}

.it-value-dropdown-panel p:last-of-type {
    margin-bottom: 0;
}

.it-value-list {
    margin: 18px auto 20px;
    padding: 0;
    list-style: none;
    max-width: 760px;
}

.it-value-list li {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    font-weight: 350;
}

.it-value-underline {
    text-decoration-line: underline;
    text-decoration-color: #008b8b;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
}

.it-impact {
    background: #ffffff;
    padding: 100px 0 92px;
}

.it-impact .container {
    padding-left: clamp(52px, 8vw, 140px);
}

.it-impact-title {
    margin: 0 0 54px;
    font-size: clamp(24px, 3.2vw, 30px);
    line-height: 1.12;
    font-weight: 600;
    color: #000000;
}

.it-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.it-impact-item {
    padding-right: 34px;
}

.it-impact-item:not(:first-child) {
    border-left: 1px solid #d9d9d9;
    padding-left: 34px;
}

.it-impact-number {
    margin: 0 0 22px;
    font-size: clamp(60px, 7.6vw, 70px) !important;
    line-height: 0.96;
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    color: #000000;
}

.it-impact-text {
    margin: 0;
    max-width: 560px;
    font-size: clamp(17px, 0.95vw, 21px);
    line-height: 1.35;
    font-weight: 350;
    color: #374151;
}

@keyframes itDropdownOpen {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 900px) {
    .it-hero {
        padding: 100px 24px 72px;
        align-items: center;
    }

    .it-hero-content {
        margin-left: 0;
    }

    .it-value-dropdown-panel {
        padding: 32px 24px;
        border-radius: 14px;
    }

    .it-value-dropdown-panel h3 {
        font-size: 22px;
    }

    .it-value-subtitle {
        font-size: 16px;
    }

    .it-value-dropdown-panel p {
        font-size: 15px;
    }

    .it-value-list li {
        font-size: 15px;
    }

    .it-impact {
        padding: 54px 0 64px;
    }

    .it-impact .container {
        padding-left: 24px;
    }

    .it-impact-title {
        margin-bottom: 34px;
    }

    .it-impact-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .it-impact-item {
        padding-right: 0;
    }

    .it-impact-item:not(:first-child) {
        border-left: 0;
        border-top: 1px solid #d9d9d9;
        padding-left: 0;
        padding-top: 26px;
    }

    .it-impact-number {
        margin-bottom: 14px;
        font-size: clamp(42px, 12vw, 64px);
    }

    .it-impact-text {
        font-size: clamp(20px, 5.6vw, 31px);
    }
}
