/* Small responsive overrides kept separate so the internal experience can evolve safely. */
.discipline-visual-column,
.discipline-content,
.discipline-heading,
.discipline-heading-bottom,
.discipline-services {
    min-width: 0;
}

.about-process {
    overflow: hidden;
}

/* Services — non-sticky interactive discipline slider */
.discipline-showcase {
    position: relative;
    padding-top: clamp(6rem, 10vw, 10rem);
    padding-bottom: clamp(6rem, 9vw, 9rem);
    overflow: hidden;
    isolation: isolate;
}

.discipline-showcase::before {
    position: absolute;
    z-index: -1;
    top: 12%;
    left: 50%;
    width: min(70rem, 90vw);
    height: 34rem;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 22% 40%,
            rgba(225, 29, 72, 0.14),
            transparent 40%
        ),
        radial-gradient(
            circle at 72% 48%,
            rgba(244, 63, 94, 0.08),
            transparent 48%
        );
    content: '';
    filter: blur(50px);
    transform: translateX(-50%);
    animation: internal-ambient-drift 13s ease-in-out infinite alternate;
}

.discipline-showcase-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.discipline-showcase-heading h2 {
    max-width: 52rem;
    margin: 0;
    font-size: clamp(3.4rem, 6.2vw, 6.5rem);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.058em;
}

.discipline-showcase-heading h2 em {
    display: block;
    color: transparent;
    background: linear-gradient(90deg, #fb7185, #e11d48 55%, #fda4af);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.discipline-controls {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.8rem;
}

.discipline-controls button {
    display: grid;
    width: 3.2rem;
    height: 3.2rem;
    place-items: center;
    border: 1px solid rgba(225, 29, 72, 0.24);
    border-radius: 50%;
    color: #eeeaff;
    background: rgba(16, 20, 36, 0.72);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.discipline-controls button:hover,
.discipline-controls button:focus-visible {
    border-color: rgba(225, 29, 72, 0.65);
    background: rgba(225, 29, 72, 0.16);
    transform: translateY(-2px);
}

.discipline-controls span {
    min-width: 4.2rem;
    color: #8f88a5;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-align: center;
}

.discipline-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-top: 4.5rem;
}

.discipline-tabs button {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.15rem;
    color: #94a3b8;
    background: rgba(14, 18, 30, 0.6);
    text-align: left;
    backdrop-filter: blur(12px);
    transition:
        color 240ms ease,
        border-color 240ms ease,
        background 240ms ease,
        transform 240ms ease;
}

.discipline-tabs button:hover,
.discipline-tabs button:focus-visible,
.discipline-tabs button.is-active {
    border-color: rgba(225, 29, 72, 0.45);
    color: #fff;
    background: linear-gradient(
        135deg,
        rgba(225, 29, 72, 0.14),
        rgba(15, 20, 32, 0.85)
    );
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(225, 29, 72, 0.2);
}

.discipline-tabs button span {
    color: #716a8b;
    font-size: 0.62rem;
}

.discipline-tabs button strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.18rem;
}

.discipline-slider {
    margin-top: 1rem;
    overflow: hidden;
    border: 1px solid rgba(148, 128, 255, 0.22);
    border-radius: 2rem;
    background: rgba(13, 8, 39, 0.72);
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.32);
}

.discipline-slide {
    display: grid;
    min-height: 34rem;
    grid-template-columns: minmax(0, 1.12fr) minmax(23rem, 0.88fr);
}

.discipline-slide-media {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
}

.discipline-slide-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 62%, rgba(13, 8, 39, 0.82));
    content: '';
}

.discipline-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discipline-slide-media > span {
    position: absolute;
    z-index: 2;
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(162, 146, 255, 0.32);
    border-radius: 999px;
    color: #dad5ea;
    background: rgba(8, 5, 27, 0.74);
    backdrop-filter: blur(12px);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.discipline-slide-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.4rem, 5vw, 4.8rem);
}

.discipline-slide-copy::before {
    position: absolute;
    top: 13%;
    right: 8%;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--from) 20%, transparent);
    content: '';
    filter: blur(60px);
}

.discipline-slide-copy > span {
    color: var(--from);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.discipline-slide-copy h3 {
    margin: 0.8rem 0 1rem;
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.055em;
}

.discipline-slide-copy > p {
    max-width: 31rem;
    margin: 0;
    color: #aaa4bb;
    line-height: 1.65;
}

.discipline-slide-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.8rem 0 2.2rem;
}

.discipline-slide-services span {
    padding: 0.5rem 0.72rem;
    border: 1px solid rgba(152, 135, 255, 0.18);
    border-radius: 999px;
    color: #bdb7cc;
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.67rem;
}

.discipline-slide-copy > a {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.7rem;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
}

.discipline-slide-copy > a svg {
    width: 1rem;
    transition: transform 220ms ease;
}

.discipline-slide-copy > a:hover svg {
    transform: translateY(4px);
}

.services-catalog {
    position: relative;
    padding-top: 1rem;
    overflow: clip;
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(225, 29, 72, 0.06),
            transparent 28rem
        ),
        radial-gradient(
            circle at 88% 62%,
            rgba(244, 63, 94, 0.05),
            transparent 30rem
        );
}

.discipline-chapter {
    padding-top: clamp(6rem, 9vw, 9rem);
    scroll-margin-top: 7rem;
}

.discipline-chapter + .discipline-chapter {
    margin-top: clamp(6rem, 10vw, 10rem);
    border-top-color: rgba(255, 255, 255, 0.08);
}

.discipline-visual {
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease,
        transform 300ms ease;
}

.discipline-visual:hover {
    border-color: color-mix(in srgb, var(--from) 48%, transparent);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.discipline-visual img {
    transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.discipline-visual:hover img {
    transform: scale(1.045);
}

.service-accordions {
    margin-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        border-color 220ms ease,
        background 220ms ease;
}

.service-accordion.is-open {
    border-color: rgba(225, 29, 72, 0.3);
    background: linear-gradient(
        90deg,
        rgba(225, 29, 72, 0.07),
        transparent 72%
    );
}

.service-accordion > button {
    display: grid;
    width: 100%;
    min-height: 5.8rem;
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 0.35rem;
    border: 0;
    color: #f4f1fb;
    background: transparent;
    text-align: left;
}

.service-accordion > button > span {
    color: #746d8b;
    font-size: 0.62rem;
}

.service-accordion > button h3 {
    margin: 0;
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 600;
}

.service-accordion > button > svg {
    width: 1.1rem;
    color: #81799c;
    transition:
        color 220ms ease,
        transform 300ms ease;
}

.service-accordion.is-open > button > svg {
    color: var(--from);
    transform: rotate(180deg);
}

.service-accordion-panel {
    overflow: hidden;
}

.accordion-content-inner {
    padding: 0 1rem 1.6rem 3rem;
}

.accordion-content-inner > p,
.service-accordion-panel > p {
    max-width: 44rem;
    margin: 0;
    padding: 0 0 1rem;
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.65;
}

.accordion-action-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.service-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--from, #fda4af);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: transform 200ms ease, color 200ms ease;
}

.service-more-link:hover {
    transform: translateX(4px);
    color: #fff;
}

.service-whatsapp-quick {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 200ms ease;
}

.service-whatsapp-quick:hover {
    background: rgba(34, 197, 94, 0.22);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.55);
    transform: translateY(-1px);
}

.service-accordion-panel > a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 3.4rem 1.6rem;
    color: var(--from);
    font-size: 0.72rem;
    font-weight: 800;
}

.service-accordion-panel > a svg {
    width: 1rem;
    transition: transform 220ms ease;
}

.service-accordion-panel > a:hover svg {
    transform: translateX(4px);
}

.outcome-card,
.principle-card {
    transition:
        transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
        border-color 320ms ease,
        box-shadow 320ms ease;
}

.outcome-card:hover,
.principle-card:hover {
    border-color: rgba(154, 137, 255, 0.38);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    transform: translateY(-8px);
}

/* About — dark interactive process */
.about-process {
    position: relative;
    padding-top: clamp(7rem, 11vw, 11rem);
    padding-bottom: clamp(7rem, 11vw, 11rem);
    color: #f7f4ff;
    background:
        radial-gradient(
            circle at 18% 35%,
            rgba(82, 207, 255, 0.09),
            transparent 25rem
        ),
        radial-gradient(
            circle at 82% 58%,
            rgba(131, 81, 255, 0.18),
            transparent 30rem
        ),
        #08041d;
}

.about-process > .public-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(20rem, 0.72fr) minmax(36rem, 1.28fr);
    gap: clamp(3.5rem, 7vw, 7rem);
}

.about-process-intro {
    position: relative;
    top: auto;
    align-self: center;
}

.about-process-intro .eyebrow {
    color: #aaa3bd;
}

.about-process-intro h2 {
    color: #f8f5ff;
    text-wrap: balance;
}

.about-process-intro > p:last-child {
    color: #aaa4b8;
}

.about-process-experience {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(13rem, 0.72fr) minmax(20rem, 1.28fr);
    gap: 1rem;
}

.about-process-track {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 0;
}

.about-process-track::before {
    display: none;
}

.about-process-progress {
    top: 0.9rem;
    bottom: 0.9rem;
    left: 0.35rem;
    width: 1px;
    background: linear-gradient(#645bff, #e44eaf, #50d9ff);
    transform-origin: top;
}

.about-process-track button {
    position: relative;
    display: grid;
    min-height: 5.1rem;
    grid-template-columns: 2rem 0.75rem minmax(0, 1fr) auto;
    gap: 0.7rem;
    align-items: center;
    padding: 0.7rem 0.8rem;
    border: 0;
    border-bottom: 1px solid rgba(148, 129, 255, 0.15);
    border-radius: 0.85rem;
    color: #8d869f;
    background: transparent;
    text-align: left;
    transition:
        color 220ms ease,
        background 220ms ease,
        transform 220ms ease;
}

.about-process-track button:hover,
.about-process-track button:focus-visible,
.about-process-track button.is-active {
    color: #fff;
    background: linear-gradient(90deg, rgba(103, 82, 255, 0.17), transparent);
    transform: translateX(5px);
}

.about-process-track button > span {
    font-size: 0.61rem;
}

.about-process-track button > i {
    width: 0.62rem;
    height: 0.62rem;
    border: 2px solid #08041d;
    border-radius: 50%;
    background: #5f55ff;
    box-shadow: 0 0 0 1px #7168ff;
}

.about-process-track button.is-active > i {
    background: #5be3ff;
    box-shadow:
        0 0 0 1px #5be3ff,
        0 0 18px rgba(91, 227, 255, 0.75);
}

.about-process-track button > strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.about-process-track button > svg {
    width: 1rem;
    transition: transform 220ms ease;
}

.about-process-track button.is-active > svg {
    transform: translateX(4px);
}

.about-process-stage {
    position: relative;
    min-height: 31rem;
    overflow: hidden;
    border: 1px solid rgba(151, 132, 255, 0.24);
    border-radius: 1.8rem;
    background:
        linear-gradient(145deg, rgba(119, 89, 255, 0.13), transparent 48%),
        rgba(17, 10, 48, 0.76);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.28),
        inset 0 1px rgba(255, 255, 255, 0.05);
}

.about-process-stage::after {
    position: absolute;
    right: -4rem;
    bottom: -5rem;
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(101, 88, 255, 0.2);
    border-radius: 50%;
    content: '';
    box-shadow:
        0 0 0 2.5rem rgba(101, 88, 255, 0.035),
        0 0 0 5rem rgba(101, 88, 255, 0.02);
}

.about-process-stage article {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 31rem;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.2rem, 4vw, 4rem);
}

.about-process-stage article > span {
    color: #8178a0;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-process-stage article > strong {
    margin-top: 1rem;
    color: transparent;
    background: linear-gradient(90deg, #fff 0%, #a68cff 55%, #67ddff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(4.5rem, 7vw, 7.2rem);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.055em;
}

.about-process-stage article > p {
    max-width: 30rem;
    margin: 1.5rem 0 0;
    color: #b2acc0;
    font-size: 1rem;
    line-height: 1.65;
}

.about-process-stage article > div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 3rem;
    color: #807998;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-process-stage article > div i {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #63e9ae;
    box-shadow: 0 0 16px #63e9ae;
}

.about-process-ambient {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block !important;
    pointer-events: none;
}

.about-process-ambient span {
    position: absolute;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    opacity: 0.34;
    background: rgba(102, 80, 255, 0.24);
    filter: blur(70px);
    animation: internal-orbit 15s ease-in-out infinite alternate;
}

.about-process-ambient span:nth-child(1) {
    top: 8%;
    left: -6rem;
}

.about-process-ambient span:nth-child(2) {
    top: 54%;
    right: -5rem;
    background: rgba(75, 211, 255, 0.2);
    animation-delay: -5s;
}

.about-process-ambient span:nth-child(3) {
    bottom: -8rem;
    left: 48%;
    background: rgba(230, 70, 174, 0.15);
    animation-delay: -9s;
}

@keyframes internal-ambient-drift {
    from {
        transform: translate3d(-53%, -2%, 0) scale(0.96);
    }

    to {
        transform: translate3d(-47%, 5%, 0) scale(1.05);
    }
}

@keyframes internal-orbit {
    from {
        transform: translate3d(-4%, -5%, 0) scale(0.92);
    }

    to {
        transform: translate3d(7%, 8%, 0) scale(1.08);
    }
}

@media (max-width: 1080px) {
    .discipline-slide {
        grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.9fr);
    }

    .about-process > .public-container {
        grid-template-columns: 1fr;
    }

    .about-process-intro {
        max-width: 50rem;
    }

    .about-process-experience {
        grid-template-columns: minmax(13rem, 0.62fr) minmax(22rem, 1.38fr);
    }
}

@media (max-width: 900px) {
    .discipline-showcase-heading {
        align-items: center;
    }

    .discipline-slide {
        grid-template-columns: 1fr;
    }

    .discipline-slide-media {
        min-height: 24rem;
        aspect-ratio: 16 / 10;
    }

    .discipline-slide-media::after {
        background: linear-gradient(
            180deg,
            transparent 68%,
            rgba(13, 8, 39, 0.92)
        );
    }

    .discipline-visual-column {
        position: relative;
        top: auto;
    }

    .about-process-experience {
        grid-template-columns: 1fr;
    }

    .about-process-track {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .about-process-progress {
        display: none;
    }
}

@media (max-width: 680px) {
    .discipline-showcase-heading {
        display: grid;
        align-items: start;
    }

    .discipline-showcase-heading h2 {
        font-size: clamp(3.15rem, 14vw, 4.35rem);
    }

    .discipline-controls {
        justify-self: end;
    }

    .discipline-tabs {
        display: flex;
        margin-top: 3rem;
        padding-bottom: 0.4rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .discipline-tabs::-webkit-scrollbar {
        display: none;
    }

    .discipline-tabs button {
        min-width: 12.5rem;
        flex: 0 0 12.5rem;
        scroll-snap-align: start;
    }

    .discipline-slider {
        border-radius: 1.35rem;
    }

    .discipline-slide {
        min-height: 0;
    }

    .discipline-slide-media {
        min-height: 17rem;
    }

    .discipline-slide-copy {
        padding: 2.1rem 1.35rem 2.5rem;
    }

    .discipline-slide-copy h3 {
        font-size: clamp(3.1rem, 15vw, 4.4rem);
    }

    .discipline-chapter,
    .discipline-chapter.is-reversed {
        padding-top: 5.5rem;
    }

    .discipline-chapter + .discipline-chapter {
        margin-top: 5rem;
    }

    .service-accordion > button {
        grid-template-columns: 1.7rem minmax(0, 1fr) auto;
        gap: 0.7rem;
    }

    .service-accordion-panel > p {
        padding-right: 1rem;
        padding-left: 2.75rem;
    }

    .service-accordion-panel > a {
        margin-left: 2.75rem;
    }

    .about-process > .public-container {
        grid-template-columns: minmax(0, 1fr);
    }

    .about-process-experience {
        min-width: 0;
    }

    .about-process-track {
        grid-template-columns: 1fr;
    }

    .about-process-track button {
        min-height: 4.4rem;
    }

    .about-process-stage,
    .about-process-stage article {
        min-height: 25rem;
    }

    .about-process-stage article {
        padding: 2rem 1.35rem;
    }

    .about-process-stage article > strong {
        font-size: clamp(4rem, 21vw, 6rem);
    }

    .outcome-grid {
        display: flex;
        gap: 0.85rem;
        margin-right: -1.15rem;
        padding-right: 1.15rem;
        padding-bottom: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .outcome-grid::-webkit-scrollbar {
        display: none;
    }

    .outcome-grid > div,
    .outcome-grid > div:last-child {
        min-width: min(84vw, 22rem);
        flex: 0 0 min(84vw, 22rem);
        scroll-snap-align: center;
    }

    .discipline-heading h2 {
        font-size: clamp(2.5rem, 11.5vw, 3.4rem);
    }

    .about-float-label-1,
    .about-float-label-3 {
        left: 2%;
    }

    .about-float-label-2,
    .about-float-label-4 {
        right: 2%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .discipline-showcase::before,
    .about-process-ambient span,
    .service-cta-ambient-glow,
    .services-hero-kicker .live-dot,
    .service-cta-kicker .kicker-dot,
    .services-visual-scan {
        animation: none !important;
    }

    .discipline-visual img,
    .outcome-card,
    .principle-card,
    .service-goal-pill,
    .service-cta-primary-btn,
    .service-cta-secondary-btn {
        transition: none !important;
    }
}

/* ==========================================================================
   Services Page Refinements & Modernized Elements
   ========================================================================== */

/* Hero status kicker */
.services-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.25);
    color: #fda4af;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    width: fit-content;
}

.services-hero-kicker .live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fb7185;
    box-shadow: 0 0 8px #e11d48;
    animation: kicker-pulse 2s ease-in-out infinite;
}

/* Hero Metrics strip */
.services-hero-metrics {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 2.2rem;
    padding: 1.1rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.1rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: fit-content;
    max-width: 100%;
}

.services-metric-item {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.services-metric-item > div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.services-metric-item > div strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
}

.services-metric-item > div small {
    font-size: 0.68rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-sep {
    width: 1px;
    height: 1.7rem;
    background: rgba(255, 255, 255, 0.12);
}

/* Hero Visual enhancements */
.services-visual-wrap {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
}

.services-visual-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(225, 29, 72, 0.15) 50%, transparent 100%);
    height: 30%;
    animation: visual-scan-move 4.5s ease-in-out infinite alternate;
    opacity: 0.7;
    z-index: 2;
}

@keyframes visual-scan-move {
    0% { top: 0%; }
    100% { top: 70%; }
}

.services-radar-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.95rem;
    border-radius: 9999px;
    background: rgba(10, 14, 23, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(225, 29, 72, 0.35);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
}

.services-radar-badge svg {
    color: #fb7185;
}

/* Services process — neutralize the legacy three-column wrapper. */
.public-shell .service-method > .public-container {
    display: block;
    border-top: 0;
}

.public-shell .service-method > .public-container > .method-intro,
.public-shell .service-method > .public-container > .method-track {
    min-height: 0;
    padding: 0;
    border-right: 0;
}

/* ========================================================================== 
   Services CTA Section: "¿Qué necesitas mover primero?"
   ========================================================================== */

.service-question-cta > div.public-container {
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    min-height: auto !important;
    display: block !important;
    box-shadow: none !important;
}

.service-cta-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    border-radius: 2.25rem;
    border: 1px solid rgba(225, 29, 72, 0.28);
    background:
        radial-gradient(
            ellipse 80% 50% at 50% -5%,
            rgba(225, 29, 72, 0.25),
            transparent 70%
        ),
        radial-gradient(
            ellipse 60% 40% at 90% 100%,
            rgba(244, 63, 94, 0.1),
            transparent 65%
        ),
        linear-gradient(160deg, #101524 0%, #080a13 100%);
    box-shadow:
        0 30px 90px -20px rgba(0, 0, 0, 0.85),
        0 0 50px -15px rgba(225, 29, 72, 0.2);
}

.service-cta-ambient-glow {
    position: absolute;
    top: -20%;
    left: 30%;
    width: 40rem;
    height: 25rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.18), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    animation: internal-ambient-drift 10s ease-in-out infinite alternate;
}

.service-cta-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1.05rem;
    border-radius: 9999px;
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(225, 29, 72, 0.32);
    color: #fda4af;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.service-cta-kicker .kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fb7185;
    box-shadow: 0 0 8px #e11d48;
    animation: kicker-pulse 2s ease-in-out infinite;
}

@keyframes kicker-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.35);
        opacity: 0.65;
    }
}

.service-cta-card h2 {
    position: relative;
    z-index: 1;
    max-width: 54rem;
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.8rem, 5.8vw, 5.4rem);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #f8fafc;
}

.service-cta-card h2 em {
    font-style: normal;
    color: transparent;
    background: linear-gradient(90deg, #fb7185, #e11d48 55%, #fda4af);
    -webkit-background-clip: text;
    background-clip: text;
}

.service-cta-lead {
    position: relative;
    z-index: 1;
    max-width: 44rem;
    margin: 1.2rem auto 2.5rem;
    color: #94a3b8;
    font-size: clamp(0.98rem, 1.2vw, 1.15rem);
    line-height: 1.65;
}

/* Interactive Goal Grid */
.service-goal-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    width: 100%;
    max-width: 62rem;
    margin: 0 auto 2.5rem;
}

.service-goal-pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    text-align: left;
    cursor: pointer;
    transition:
        border-color 220ms ease,
        background 220ms ease,
        transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 220ms ease;
    color: #cbd5e1;
}

.service-goal-pill:hover {
    border-color: rgba(225, 29, 72, 0.45);
    background: rgba(225, 29, 72, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.5);
}

.service-goal-pill.is-selected {
    border-color: rgba(225, 29, 72, 0.85);
    background: linear-gradient(
        135deg,
        rgba(225, 29, 72, 0.22) 0%,
        rgba(16, 21, 36, 0.88) 100%
    );
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 14px 32px -8px rgba(225, 29, 72, 0.4),
        inset 0 0 16px rgba(225, 29, 72, 0.15);
}

.goal-pill-icon {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    color: #fda4af;
    flex-shrink: 0;
    transition: all 220ms ease;
}

.service-goal-pill.is-selected .goal-pill-icon {
    background: #e11d48;
    color: #fff;
    box-shadow: 0 0 14px rgba(225, 29, 72, 0.6);
}

.goal-pill-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.goal-pill-text strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.1;
    color: #f8fafc;
}

.goal-pill-text small {
    font-size: 0.75rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-goal-pill.is-selected .goal-pill-text small {
    color: #fda4af;
}

.goal-pill-check {
    color: #fb7185;
    margin-left: auto;
    flex-shrink: 0;
}

/* Action buttons */
.service-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.service-cta-primary-btn.button-crimson {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.9rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 14px 34px -4px rgba(225, 29, 72, 0.55);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background 220ms ease;
}

.service-cta-primary-btn.button-crimson:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px -4px rgba(225, 29, 72, 0.7);
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
}

.service-cta-secondary-btn.button-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.7rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #f1f5f9;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        background 220ms ease,
        color 220ms ease;
}

.service-cta-secondary-btn.button-outline:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Trust Badges */
.service-cta-trust {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.service-cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-cta-trust svg {
    color: #fb7185;
}

.trust-sep {
    color: rgba(255, 255, 255, 0.18);
}

/* Responsive Overrides for Services */
@media (max-width: 1080px) {
    .service-goal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .service-goal-grid {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .services-hero-metrics {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .services-metric-item {
        width: 100%;
        justify-content: space-between;
    }

    .metric-sep {
        display: none;
    }

    .service-cta-card {
        padding: 2.4rem 1.25rem;
        border-radius: 1.5rem;
    }

    .service-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .service-cta-actions .button {
        width: 100%;
        justify-content: center;
    }

    .service-cta-trust {
        flex-direction: column;
        gap: 0.45rem;
    }

    .service-cta-trust .trust-sep {
        display: none;
    }
}

/* ==========================================================================
   Service Detail & Category Pages — High-Fidelity Experience
   ========================================================================== */

/* Breadcrumbs bar */
.service-breadcrumbs-bar {
    position: relative;
    z-index: 10;
    padding: 6.5rem 0 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.78rem;
    color: #94a3b8;
    flex-wrap: wrap;
}

.service-breadcrumbs-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 180ms ease;
}

.service-breadcrumbs-list a:hover {
    color: #fff;
}

.bc-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.72rem;
}

.bc-current {
    color: #f1f5f9;
    font-weight: 600;
}

/* Service Detail Hero */
.service-detail-hero,
.category-hero {
    position: relative;
    padding-top: clamp(2.5rem, 5vw, 4.5rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
    overflow: hidden;
    isolation: isolate;
}

.service-detail-hero-ambient,
.category-hero-ambient {
    position: absolute;
    top: 0;
    right: 10%;
    width: 45rem;
    height: 30rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.12), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.service-detail-hero-grid,
.category-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.service-detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.95rem;
    border-radius: 9999px;
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(225, 29, 72, 0.3);
    color: #fda4af;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.service-detail-title,
.category-hero-title {
    margin: 0 0 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.6rem, 5.2vw, 4.8rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #f8fafc;
}

.service-detail-lead,
.category-hero-lead {
    margin: 0 0 1.8rem;
    max-width: 38rem;
    color: #94a3b8;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.65;
}

.service-detail-specs {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.85rem 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    width: fit-content;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.03em;
}

.spec-item svg {
    color: #fb7185;
}

.spec-sep {
    width: 1px;
    height: 1.2rem;
    background: rgba(255, 255, 255, 0.12);
}

.category-hero-meta {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-pill {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}

.meta-pill strong {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.meta-pill span {
    font-size: 0.76rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.meta-sep {
    width: 1px;
    height: 1.4rem;
    background: rgba(255, 255, 255, 0.12);
}

.service-detail-actions,
.category-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Service Detail Visual Hero */
.service-detail-visual,
.category-hero-visual {
    position: relative;
    margin: 0;
}

.service-detail-visual-wrap {
    position: relative;
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(225, 29, 72, 0.32);
    box-shadow:
        0 24px 70px -15px rgba(0, 0, 0, 0.8),
        0 0 45px -10px rgba(225, 29, 72, 0.22);
    background: #080a14;
}

.service-visual-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-detail-visual-wrap:hover .service-visual-img {
    transform: scale(1.04);
}

.service-visual-ambient-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(225, 29, 72, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.service-visual-badge {
    position: absolute;
    bottom: 1.15rem;
    left: 1.15rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    border-radius: 9999px;
    background: rgba(10, 14, 23, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(225, 29, 72, 0.4);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.service-visual-watermark {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    z-index: 4;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(10, 14, 23, 0.65);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.65rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Strategic Opportunity Section */
.service-opportunity-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-section-heading {
    max-width: 48rem;
    margin-bottom: 3.5rem;
}

.service-section-heading h2 {
    margin: 0.6rem 0 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #f8fafc;
}

.service-opportunity-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
}

.service-opportunity-card {
    padding: 2.5rem;
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid #e11d48;
    backdrop-filter: blur(12px);
}

.opportunity-icon-wrap {
    display: grid;
    place-items: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.9rem;
    background: rgba(225, 29, 72, 0.15);
    color: #fb7185;
    margin-bottom: 1.4rem;
}

.service-opportunity-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: #f8fafc;
}

.service-body-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #94a3b8;
    margin: 0;
}

.service-opportunity-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all 220ms ease;
}

.pillar-item:hover {
    border-color: rgba(225, 29, 72, 0.35);
    background: rgba(225, 29, 72, 0.06);
    transform: translateX(4px);
}

.pillar-icon {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.75rem;
    background: rgba(225, 29, 72, 0.12);
    color: #fda4af;
    flex-shrink: 0;
}

.pillar-item h4 {
    margin: 0 0 0.3rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #f8fafc;
}

.pillar-item p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* Deliverables & Benefits Grid */
.service-deliverables-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-scope-card {
    padding: 2.5rem;
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 260ms ease;
}

.service-scope-card:hover {
    border-color: rgba(225, 29, 72, 0.38);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px);
}

.scope-card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.scope-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.scope-badge.deliverables-badge {
    background: rgba(225, 29, 72, 0.12);
    border-color: rgba(225, 29, 72, 0.3);
    color: #fda4af;
}

.scope-card-header h3 {
    margin: 0 0 0.4rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #f8fafc;
}

.scope-card-header p {
    margin: 0;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
}

.scope-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.scope-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.94rem;
    line-height: 1.55;
    color: #cbd5e1;
}

.scope-check-icon {
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.scope-num-chip {
    display: grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0.55rem;
    background: rgba(225, 29, 72, 0.18);
    border: 1px solid rgba(225, 29, 72, 0.35);
    color: #fda4af;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* 4-Phase Methodology */
.service-methodology-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-phases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.service-phase-card {
    position: relative;
    padding: 1.8rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 240ms ease;
}

.service-phase-card:hover {
    border-color: rgba(225, 29, 72, 0.45);
    background: rgba(225, 29, 72, 0.06);
    transform: translateY(-4px);
}

.phase-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.phase-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fb7185;
    line-height: 1;
}

.phase-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(225, 29, 72, 0.4);
    box-shadow: 0 0 10px rgba(225, 29, 72, 0.3);
}

.service-phase-card:hover .phase-indicator {
    background: #e11d48;
    box-shadow: 0 0 12px #e11d48;
}

.service-phase-card h4 {
    margin: 0 0 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f8fafc;
}

.service-phase-card p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* Related Services */
.service-related-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.service-related-card {
    display: flex;
    flex-direction: column;
    padding: 1.8rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 260ms ease;
    height: 100%;
}

.service-related-card:hover {
    border-color: rgba(225, 29, 72, 0.45);
    background: rgba(225, 29, 72, 0.07);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.5);
}

.related-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.related-cat-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fda4af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.related-arrow {
    color: #94a3b8;
    transition: transform 220ms ease, color 220ms ease;
}

.service-related-card:hover .related-arrow {
    transform: translateX(4px);
    color: #fff;
}

.service-related-card h3 {
    margin: 0 0 0.6rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #f8fafc;
}

.service-related-card p {
    margin: 0 0 1.5rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #94a3b8;
    flex-grow: 1;
}

.related-card-footer {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fb7185;
    letter-spacing: 0.02em;
}

/* Category Catalog Section */
.category-catalog-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-sublead {
    margin: 0.6rem 0 0;
    max-width: 38rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
}

.category-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.category-service-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 260ms ease;
    height: 100%;
}

.category-service-card:hover {
    border-color: rgba(225, 29, 72, 0.45);
    background: rgba(225, 29, 72, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.5);
}

.cat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.cat-service-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fb7185;
    line-height: 1;
}

.cat-arrow {
    color: #94a3b8;
    transition: transform 220ms ease, color 220ms ease;
}

.category-service-card:hover .cat-arrow {
    transform: translateX(4px);
    color: #fff;
}

.category-service-card h3 {
    margin: 0 0 0.7rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: #f8fafc;
}

.category-service-card p {
    margin: 0 0 1.6rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #94a3b8;
    flex-grow: 1;
}

.cat-card-footer {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fb7185;
    letter-spacing: 0.02em;
}

/* Responsive Overrides for Service Detail & Category */
@media (max-width: 1080px) {
    .service-detail-hero-grid,
    .category-hero-grid,
    .service-opportunity-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-phases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-related-grid,
    .category-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-deliverables-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .service-phases-grid,
    .service-related-grid,
    .category-services-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-specs {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        width: 100%;
    }

    .spec-sep {
        display: none;
    }

    .service-detail-actions,
    .category-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .service-detail-actions .button,
    .category-hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .service-opportunity-card,
    .service-scope-card,
    .category-service-card {
        padding: 1.6rem;
    }
}

/* Contact Page Polish */
.contact-page {
    position: relative;
    padding-top: clamp(6rem, 10vw, 9rem);
    padding-bottom: clamp(6rem, 10vw, 9rem);
}

.contact-intro {
    max-width: 42rem;
    margin-bottom: 3.5rem;
}

.contact-intro h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: #f8fafc;
    margin: 0.8rem 0 1.2rem;
}

.contact-intro p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.65;
}

.contact-data {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.contact-data a,
.contact-data span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 180ms ease;
}

.contact-data a:hover {
    color: #fb7185;
}

.contact-data svg {
    color: #e11d48;
}

.contact-form {
    padding: clamp(2rem, 4vw, 3.2rem);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
}

.contact-form label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #cbd5e1;
    margin-bottom: 0.45rem;
    display: block;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border-radius: 0.9rem;
    background: rgba(14, 18, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(225, 29, 72, 0.8);
    background: rgba(18, 22, 38, 0.95);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.18);
}

.contact-form select option {
    background: #0e121e;
    color: #fff;
}
