/* ==========================================================================
   ICONTECH STUDIO — SERVICES PAGE STYLESHEET (css/services.css)
   Clean, premium, responsive styling adhering strictly to IconTech design system.
   ========================================================================== */

/* --------------------------------------------------------------------------
   00. BASE & SHARED SECTION UTILITIES
   -------------------------------------------------------------------------- */
.services-page {
    background-color: #05010a;
    color: #ffffff;
    overflow-x: hidden;
    --cta-padding-top: 0;
    --cta-padding-bottom: var(--services-section-gap);
}

:root {
    --services-section-gap: clamp(4rem, 6vw, 7rem);
}

.svc-section {
    position: relative;
    padding-top: calc(var(--services-section-gap) / 2);
    padding-bottom: calc(var(--services-section-gap) / 2);
    background-color: #05010a;
}

.svc-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto clamp(2rem, 3vw, 2.75rem);
}

.svc-section-header .heading-tag{
    justify-content: center;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #A594FD;
    box-shadow: 0 0 10px #A594FD;
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.3); }
}

.section-title {
    color: #ffffff;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    max-width: 680px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   01. SECTION 01: HERO
   -------------------------------------------------------------------------- */
.svc-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: var(--hero-padding-top, clamp(6.5rem, 10vw, 9.5rem));
    padding-bottom: calc(var(--services-section-gap) / 2);
    background: #05010a;
    overflow: hidden;
}

.svc-hero-content > *,
.svc-hero-visual {
    opacity: 0;
}

.svc-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(165, 148, 253, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(165, 148, 253, 0.02) 1px, transparent 1px);
    background-size: 40px 40px, 100% 40px;
    opacity: 0.6;
    z-index: 0;
}

.svc-hero-radial-glow {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 44, 155, 0.22) 0%, rgba(5, 1, 10, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.svc-hero-container {
    position: relative;
    z-index: 2;
}

.svc-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 5vw, 70px);
    align-items: center;
}

.svc-hero-content .heading-tag {
    margin-bottom: 20px;
}

.svc-hero-title {
    color: #ffffff;
    margin-bottom: 24px;
}

.svc-hero-description {
    font-size: clamp(16px, 1.15vw, 18px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 580px;
}

.svc-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Hero Metrics Strip */
.svc-hero-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metric-item strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-metric-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual Composition */
.svc-hero-visual {
    position: relative;
    width: 100%;
}

.visual-ecosystem-wrapper {
    position: relative;
    max-width: 540px;
    margin-left: auto;
}

.ecosystem-backdrop-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(165, 148, 253, 0.18) 0%, rgba(99, 44, 155, 0.08) 50%, transparent 75%);
    filter: blur(50px);
    z-index: 0;
}

/* Console Frame */
.hero-console-frame {
    position: relative;
    background: rgba(15, 10, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(165, 148, 253, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    z-index: 1;
}

.console-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.console-dots {
    display: flex;
    gap: 6px;
}

.console-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.console-address-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.console-address-bar .lock-icon {
    font-size: 10px;
}

.console-address-bar .url-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
}

.console-status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #4ade80;
    letter-spacing: 1px;
}

.status-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
}

.console-body {
    position: relative;
    padding: 12px;
    background: #080312;
}

.console-screen-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 10;
}

.main-dashboard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screen-scanline {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 50%, transparent 50%);
    background-size: 100% 4px;
    pointer-events: none;
}

/* Floating Mobile Phone Frame */
.floating-mobile-frame {
    position: absolute;
    bottom: -25px;
    right: -20px;
    width: 170px;
    height: 250px;
    background: #0c0817;
    border: 2px solid rgba(165, 148, 253, 0.4);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(99, 44, 155, 0.35);
    overflow: hidden;
    z-index: 2;
    transform: rotate(3deg);
    transition: transform 0.4s var(--ease-premium, ease);
}

.floating-mobile-frame:hover {
    transform: rotate(0deg) translateY(-6px);
}

.mobile-speaker {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    z-index: 3;
}

.mobile-app-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Telemetry Badges */
.telemetry-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 5, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 14px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.telemetry-top {
    top: -15px;
    left: -20px;
}

.telemetry-bottom {
    bottom: 20px;
    left: -25px;
}

.telemetry-icon {
    font-size: 16px;
}

.telemetry-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

.telemetry-sub {
    display: block;
    font-size: 10px;
    color: var(--purple-light, #A594FD);
}


/* --------------------------------------------------------------------------
   02. SECTION 02: WHAT WE BUILD (5 SERVICES GRID)
   -------------------------------------------------------------------------- */
.svc-what-we-build {
    background: #05010a;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 36px);
}

.svc-card-item {
    grid-column: span 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.svc-card-item:hover {
    transform: translateY(-6px);
    border-color: rgba(165, 148, 253, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(99, 44, 155, 0.2);
}

.svc-card-item.svc-card-large {
    grid-column: span 1;
}

.svc-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.svc-card-media {
    position: relative;
    width: 100%;
    height: 220px;
    background: #0c0817;
    overflow: hidden;
}

.svc-card-large .svc-card-media {
    height: 250px;
}

.svc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-premium, ease);
}

.svc-card-item:hover .svc-card-media img {
    transform: scale(1.06);
}

.media-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5, 1, 10, 0.1) 0%, rgba(5, 1, 10, 0.9) 100%);
    pointer-events: none;
}

.service-index-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(5, 1, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--purple-light, #A594FD);
    font-size: 14px;
    font-weight: 800;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.svc-card-item:hover .service-arrow-badge {
    background: var(--purple-light, #A594FD);
    color: #05010a;
    transform: translate(3px, -3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.svc-card-details {
    padding: clamp(24px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.svc-badge-row {
    margin-bottom: 12px;
}

.svc-category-pill {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple-light, #A594FD);
}

.svc-card-title {
    color: #ffffff;
    margin-bottom: 14px;
}

.svc-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
    flex-grow: 1;
}

.svc-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 0;
}

.tech-tag {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 11px;
    border-radius: 6px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.svc-card-item:hover .tech-tag {
    border-color: rgba(165, 148, 253, 0.25);
    background: rgba(165, 148, 253, 0.06);
}

.svc-action-footer {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple-light, #A594FD);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.svc-link-btn .link-arrow {
    transition: transform 0.25s ease;
}

.svc-card-item:hover .svc-link-btn {
    color: #ffffff;
}

.svc-card-item:hover .svc-link-btn .link-arrow {
    transform: translate(3px, -3px);
}


/* --------------------------------------------------------------------------
   03. SECTION 03: BUILT AROUND YOUR REQUIREMENTS (MATRIX)
   -------------------------------------------------------------------------- */
.svc-requirements-section {
    background: #05010a;
}

.req-tabs-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: clamp(20px, 3vw, 40px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.req-tabs-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
}

.req-tabs-nav::-webkit-scrollbar {
    display: none;
}

.req-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.req-tab-btn .tab-num {
    font-size: 11px;
    color: var(--purple-light, #A594FD);
    opacity: 0.7;
}

.req-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.req-tab-btn.active {
    color: #ffffff;
    background: rgba(165, 148, 253, 0.12);
    border-color: rgba(165, 148, 253, 0.35);
    box-shadow: 0 0 15px rgba(99, 44, 155, 0.2);
}

.req-tab-btn.active .tab-num {
    opacity: 1;
}

/* Tab Panels */
.req-tab-panel {
    display: none;
    animation: fadeInPanel 0.35s ease forwards;
}

.req-tab-panel.active {
    display: block;
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-service-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-light, #A594FD);
    display: block;
    margin-bottom: 8px;
}

.req-panel-title {
    color: #ffffff;
    margin-bottom: 12px;
}

.req-panel-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 30px;
    max-width: 720px;
}

.req-deliverables-box h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-weight: 700;
}

.req-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.cap-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.cap-card:hover {
    transform: translateY(-3px);
    border-color: rgba(165, 148, 253, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.cap-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cap-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.cap-text p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}





/* --------------------------------------------------------------------------
   05. SECTION 05: FROM IDEA TO IMPACT (PROCESS)
   -------------------------------------------------------------------------- */
.svc-process-section {
    background: #05010a;
}

.process-track-area {
    position: relative;
    padding: 30px 0;
}

.process-progress-line-bg {
    position: absolute;
    top: 40px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.process-progress-line-active {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, #632C9B, #A594FD);
    box-shadow: 0 0 15px rgba(165, 148, 253, 0.5);
    z-index: 2;
}

.proc-step-row {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4.5vw, 60px);
    align-items: center;
    margin-bottom: clamp(2.25rem, 3.5vw, 3.5rem);
}

.proc-step-row.reverse .proc-step-content {
    order: 2;
}

.proc-step-row.reverse .proc-step-visual {
    order: 1;
}

.proc-step-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: clamp(26px, 3.5vw, 40px);
    backdrop-filter: blur(12px);
}

.step-num-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple-light, #A594FD);
    margin-bottom: 12px;
}

.step-heading {
    color: #ffffff;
    margin-bottom: 14px;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.step-deliverables-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.proc-pill {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 11px;
    border-radius: 20px;
}

.proc-visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 10;
    background: #0c0817;
}

.proc-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-glow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 44, 155, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Final Milestone Badge */
.proc-final-milestone {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 500px;
    margin: 40px auto 0;
    padding: 30px 20px;
    background: rgba(15, 10, 26, 0.8);
    border: 1px solid rgba(165, 148, 253, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(99, 44, 155, 0.25);
}

.milestone-badge-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    margin: -50px auto 16px;
    background: #632C9B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #A594FD;
}

.milestone-icon {
    font-size: 24px;
}

.milestone-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(165, 148, 253, 0.3);
    filter: blur(8px);
    z-index: -1;
}

.milestone-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.milestone-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* --------------------------------------------------
   Process Roadmap — Tablet & Mobile
   -------------------------------------------------- */
@media (max-width: 991px) {

    .process-track-area {
        padding-left: 28px;
    }

    .process-progress-line,
    .process-progress-line-active {
        left: 10px;
        width: 2px;
    }

    .proc-step-row {
        position: relative;
        margin-left: 0;
    }

}

/* --------------------------------------------------------------------------
   06. SECTION 06: SELECTED WORK
   -------------------------------------------------------------------------- */
.svc-selected-work {
    background: #05010a;
}

.selected-work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 2.5vw, 30px);
    margin-bottom: clamp(2rem, 3vw, 3rem);
}

.work-grid-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.work-grid-card:hover {
    transform: translateY(-6px);
    border-color: rgba(165, 148, 253, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.work-card-visual {
    position: relative;
    width: 100%;
    height: 280px;
    background: #0c0817;
    overflow: hidden;
}

.work-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-premium, ease);
}

.work-grid-card:hover .work-card-visual img {
    transform: scale(1.05);
}

.work-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(5, 1, 10, 0.8) 100%);
}

.work-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: rgba(5, 1, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.work-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.work-project-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.work-project-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
    flex-grow: 1;
}

.work-footer-meta {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple-light, #A594FD);
    text-decoration: none;
    transition: all 0.25s ease;
}

.work-case-link:hover {
    color: #ffffff;
}

.work-case-link:hover .link-arrow {
    transform: translateX(4px);
}

.all-work-cta-wrap {
    text-align: center;
}


/* --------------------------------------------------------------------------
   07. SECTION 07: WHY BUILD WITH ICONTECH?
   -------------------------------------------------------------------------- */
.svc-why-section {
    background: #05010a;
}

.why-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.why-pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-pillar-card:hover {
    transform: translateY(-5px);
    border-color: rgba(165, 148, 253, 0.3);
    background: rgba(255, 255, 255, 0.035);
}

.pillar-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.pillar-icon {
    font-size: 26px;
}

.pillar-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple-light, #A594FD);
    opacity: 0.7;
}

.pillar-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.pillar-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}




/* --------------------------------------------------------------------------
   8. RESPONSIVE BREAKPOINTS & ADAPTATIONS
   -------------------------------------------------------------------------- */

/* Tablet Landscape & Small Laptop (≤ 1024px) */
@media (max-width: 1024px) {
    .svc-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .svc-hero-content .heading-tag {
        justify-content: center;
    }

    .svc-hero-description {
        margin: 0 auto 30px;
    }

    .svc-hero-actions {
        justify-content: center;
    }

    .svc-hero-metrics {
        justify-content: center;
    }

    .visual-ecosystem-wrapper {
        margin: 0 auto;
    }

    .services-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-card-item,
    .svc-card-item.svc-card-large {
        grid-column: span 1;
    }

    .process-progress-line-bg,
    .process-progress-line-active {
        left: 20px;
    }

    .proc-step-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 50px;
    }

    .proc-step-row.reverse .proc-step-content {
        order: 1;
    }

    .proc-step-row.reverse .proc-step-visual {
        order: 2;
    }

    .selected-work-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Portrait (≤ 768px) */
@media (max-width: 768px) {
    .services-showcase-grid {
        grid-template-columns: 1fr;
    }

    .floating-mobile-frame {
        width: 130px;
        height: 200px;
        right: -10px;
        bottom: -15px;
    }

    .telemetry-top {
        top: -10px;
        left: -10px;
    }

    .telemetry-bottom {
        bottom: 10px;
        left: -10px;
    }

    .svc-hero-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .metric-divider {
        display: none;
    }

    .req-tabs-wrapper {
        padding: 20px 16px;
    }

    .req-capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .svc-hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .why-pillars-grid {
        grid-template-columns: 1fr;
    }

    .floating-mobile-frame {
        display: none;
    }

    .telemetry-badge {
        display: none;
    }

    .proc-step-row {
        padding-left: 35px;
    }

    .process-progress-line-bg,
    .process-progress-line-active {
        left: 10px;
    }
}

/* ==========================================================================
   SERVICES SPECIFIC PAGE OVERRIDES FOR DYNAMIC SHELL & FINAL CTA
   ========================================================================== */
.services-section-gap {
    width: 100%;
    height: var(--services-section-gap);
    flex-shrink: 0;
}

/* Gap-Based Spacing Architecture Overrides */
.services-page .svc-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.services-page .svc-hero {
    padding-bottom: 0 !important;
}

.services-page .process-track-area {
    padding-bottom: 0 !important;
}
