:root {
    --wp--custom--motion--fast: 160ms;
    --wp--custom--motion--base: 240ms;
    --wp--custom--motion--slow: 360ms;
    --wp--preset--font-family--body: "Manrope", "Segoe UI", Arial, sans-serif;
    --wp--preset--font-family--heading: "Manrope", "Segoe UI", Arial, sans-serif;
    --wp--preset--color--primary: #11203a;
    --wp--preset--color--ink: #11203a;
    --wp--preset--color--surface: #f7f9fc;
    --wp--preset--color--accent: #324e82;
    --wp--preset--color--muted-strong: #5f6f88;
    --wp--preset--color--border-soft: rgba(17, 32, 58, 0.12);
    --wp--custom--radius--md: 1.25rem;
    --wp--custom--radius--lg: 1.5rem;
    --atv-brand-navy: #324e82;
    --atv-brand-navy-deep: #0d1628;
    --atv-brand-ink: #11203a;
    --atv-brand-muted: #5f6f88;
    --atv-brand-line: rgba(17, 32, 58, 0.12);
    --atv-surface: #f7f9fc;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    letter-spacing: 0 !important;
}

html {
    background: var(--atv-surface);
}

body.atv-site {
    margin: 0;
    min-width: 320px;
    background: var(--atv-surface);
    color: var(--atv-brand-ink);
    font-family: var(--wp--preset--font-family--body);
    overflow-x: clip;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

.av-container {
    width: min(100% - 2rem, 82.5rem);
    margin-inline: auto;
}

.atv-main {
    min-height: 50vh;
}

.atv-kicker {
    font-size: 0.78rem;
    font-weight: 700;
}

.atv-frame-header__cta,
.atv-home-hero__primary,
.atv-servicii-cta__btn,
.atv-frame-footer__cta,
.atv-start-route__actions button,
.atv-quote-form__primary {
    border: 0;
    color: #ffffff;
}

.atv-frame-header__cta {
    font-family: inherit;
}

.atv-home-hero__brands {
    width: auto;
}

.atv-brand-strip {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(0.5rem, 0.8vw, 0.75rem);
}

.atv-brand-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: default;
    animation: atv-brand-icon-drift 8s ease-in-out infinite;
    filter:
        drop-shadow(0 0 14px rgba(140, 176, 238, 0.18))
        drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
    will-change: opacity, transform;
}

.atv-brand-strip__item:nth-child(2) {
    animation-delay: -1.6s;
}

.atv-brand-strip__item:nth-child(3) {
    width: 3.05rem;
    animation-delay: -3.2s;
}

.atv-brand-strip__item:nth-child(4) {
    animation-delay: -4.8s;
}

.atv-brand-strip__item svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.atv-brand-strip__item--wide svg {
    width: 100%;
}

@keyframes atv-brand-icon-drift {
    0%,
    100% {
        opacity: 0.55;
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        opacity: 0.88;
        transform: translate3d(0, -0.18rem, 0) scale(1.035);
    }
}

@media (prefers-reduced-motion: reduce) {
    .atv-brand-strip__item {
        animation: none;
    }
}

.atv-section--services,
.atv-projects-preview,
.atv-cta-band {
    padding-block: 5rem;
}

.atv-section-heading h2,
.atv-page-hero h1,
.atv-projects-intro h1,
.atv-project-hero h1,
.atv-article-hero h1,
.atv-search-hero h1 {
    margin: 0.35rem 0 0;
    font-size: 3rem;
    line-height: 1.04;
    font-weight: 650;
}

.atv-section-heading p,
.atv-page-hero__excerpt,
.atv-projects-intro__lead {
    max-width: 48rem;
}

.atv-service-grid,
.atv-project-grid,
.atv-blog-grid,
.atv-contact-layout,
.atv-about-grid,
.atv-service-detail__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.atv-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.atv-service-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 0.85rem;
    margin-bottom: 1rem;
}

.atv-project-card {
    overflow: hidden;
    border: 1px solid rgba(17, 32, 58, 0.08);
    border-radius: 1.25rem;
    background: #ffffff;
}

.atv-project-card__media {
    display: block;
    overflow: hidden;
    background: #e8edf6;
}

.atv-project-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.atv-project-card__body {
    display: grid;
    gap: 0.7rem;
    padding: 1.25rem;
}

.atv-project-card__body h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.15;
}

.atv-project-card__body h3 a,
.atv-post-card a,
.atv-frame-footer a,
.atv-project-external {
    color: inherit;
    text-decoration: none;
}

.atv-project-card__body p,
.atv-post-card p,
.atv-contact-card p,
.atv-page-content p,
.atv-project-body p,
.atv-article-body p,
.atv-legal-page li {
    color: var(--atv-brand-muted);
    line-height: 1.75;
}

.atv-project-card__meta,
.atv-project-tags span {
    color: var(--atv-brand-navy);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.atv-frame-footer {
    padding: 1rem;
    background: #07111d;
    color: rgba(255, 255, 255, 0.74);
}

.atv-frame-footer__inner {
    padding-block: 3rem 1rem;
}

.atv-frame-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.atv-frame-footer h2 {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.atv-frame-footer nav,
.atv-frame-footer section {
    display: grid;
    align-content: start;
    gap: 0.65rem;
}

.atv-frame-footer .atv-frame-footer__brand {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0.95rem;
}

.atv-frame-footer__brand .atv-frame-brand--footer {
    grid-area: auto;
    justify-self: start;
    margin-top: 0.2rem;
}

.atv-frame-footer__brand p {
    margin: 0;
}

.atv-frame-footer__cta {
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    min-height: 2.8rem;
    padding: 0.75rem 1.15rem;
    border-radius: 1rem;
    background: #ffffff;
    color: #11203a;
    font-weight: 700;
}

.atv-frame-footer__subbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.atv-frame-footer__subbar nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.atv-frame-footer__subbar button {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.74);
    padding: 0;
}

.atv-page-shell,
.atv-archive-shell,
.atv-article-shell,
.atv-project-view,
.atv-search-shell,
.atv-service-detail {
    padding-top: calc(var(--atv-header-height) + 3rem);
    padding-bottom: 5rem;
}

.atv-page-content,
.atv-contact-card,
.atv-empty-state,
.atv-post-card,
.atv-service-detail__media,
.atv-start-route__panel {
    border: 1px solid rgba(17, 32, 58, 0.08);
    border-radius: 1.25rem;
    background: #ffffff;
}

.atv-page-content,
.atv-contact-card,
.atv-empty-state,
.atv-post-card,
.atv-start-route__panel {
    padding: 2rem;
}

.atv-site .public-page-intro {
    width: min(100% - 2rem, 54rem);
    margin: calc(var(--atv-header-height) + 3rem) auto 5rem;
    padding: clamp(2rem, 4vw, 3rem);
    gap: 1rem;
    border: 1px solid rgba(17, 32, 58, 0.08);
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(17, 32, 58, 0.08);
}

.atv-site .public-page-intro h1 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.atv-site .public-page-intro .button {
    justify-self: start;
    width: auto;
    border-radius: 999px;
    border-color: var(--atv-brand-navy);
    background: var(--atv-brand-navy);
}

.atv-about-grid {
    align-items: stretch;
    margin-bottom: 1rem;
}

.atv-about-grid img,
.atv-service-detail__media img,
.atv-project-showcase img {
    display: block;
    width: 100%;
    border-radius: 1.25rem;
}

.atv-project-hero {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
}

.atv-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.atv-project-tags span {
    display: inline-flex;
    min-height: 2.3rem;
    align-items: center;
    padding-inline: 0.95rem;
    border: 1px solid rgba(17, 32, 58, 0.1);
    border-radius: 999px;
}

.atv-project-external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding-inline: 1.2rem;
    border-radius: 1rem;
    background: var(--atv-brand-navy);
    color: #ffffff;
    font-weight: 700;
}

.atv-project-showcase {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.atv-project-body {
    display: grid;
    gap: 1.8rem;
    padding: 2.5rem;
    background: #ffffff;
}

.atv-service-detail__media {
    overflow: hidden;
    margin-bottom: 1rem;
}

.atv-service-detail__media img {
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.atv-start-route {
    display: grid;
    min-height: 100vh;
    align-items: center;
    padding-top: var(--atv-header-height);
    background: #07111d;
}

.atv-start-route__panel {
    max-width: 42rem;
}

.atv-start-route__panel h1 {
    margin: 0.4rem 0 1rem;
    font-size: 3rem;
}

.atv-start-route__actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.atv-start-route__actions button,
.atv-start-route__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding-inline: 1.2rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 700;
}

.atv-start-route__actions button {
    background: var(--atv-brand-navy);
}

.atv-start-route__actions a {
    color: var(--atv-brand-ink);
}

.atv-search-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.atv-search-form input {
    flex: 1;
    min-height: 3rem;
    border: 1px solid rgba(17, 32, 58, 0.12);
    border-radius: 1rem;
    padding-inline: 1rem;
}

.atv-search-form button {
    border: 0;
    border-radius: 1rem;
    padding-inline: 1.2rem;
    background: var(--atv-brand-navy);
    color: #ffffff;
    font-weight: 700;
}

.atv-quote-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}

.atv-quote-modal.is-open {
    display: block;
}

.atv-quote-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(5, 10, 19, 0.58);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.atv-quote-modal__dialog {
    position: absolute;
    inset: 50% auto auto 50%;
    width: min(100% - 2rem, 64rem);
    max-height: calc(100dvh - 2rem);
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 1.25rem;
    background: #ffffff;
}

.atv-quote-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(17, 32, 58, 0.12);
    border-radius: 999px;
    background: #ffffff;
}

.atv-quote-modal__shell {
    display: grid;
    grid-template-columns: 20rem minmax(0, 1fr);
    min-height: min(42rem, calc(100dvh - 2rem));
}

.atv-quote-modal__aside {
    display: grid;
    align-content: space-between;
    gap: 2rem;
    padding: 1.5rem;
    background: #07111d;
    color: #ffffff;
}

.atv-quote-modal__aside p,
.atv-quote-modal__aside small {
    color: rgba(255, 255, 255, 0.68);
}

.atv-quote-modal__content {
    overflow: auto;
    padding: 2rem;
}

.atv-quote-progress {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.atv-quote-progress__item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    opacity: 0.56;
}

.atv-quote-progress__item.is-current,
.atv-quote-progress__item.is-complete {
    opacity: 1;
}

.atv-quote-progress__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
}

.atv-quote-progress__meta {
    display: grid;
    gap: 0.05rem;
}

.atv-quote-step[hidden],
.atv-honeypot {
    display: none !important;
}

.atv-quote-step.is-current {
    display: grid;
    gap: 1rem;
}

.atv-quote-step h2 {
    margin: 0.3rem 0 0.75rem;
    font-size: 2rem;
}

.atv-quote-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.atv-quote-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--atv-brand-ink);
    font-weight: 600;
}

.atv-quote-form input,
.atv-quote-form select,
.atv-quote-form textarea {
    width: 100%;
    min-height: 3rem;
    border: 1px solid rgba(17, 32, 58, 0.14);
    border-radius: 0.9rem;
    padding: 0.75rem 0.9rem;
    background: #ffffff;
    color: var(--atv-brand-ink);
}

.atv-quote-form textarea {
    min-height: 10rem;
    resize: vertical;
}

.atv-quote-form__full,
.atv-quote-form__consent {
    margin-top: 1.25rem;
}

.atv-quote-form__consent {
    grid-template-columns: auto 1fr;
    align-items: start;
    font-weight: 500;
}

.atv-quote-form__consent input {
    width: 1.15rem;
    min-height: 1.15rem;
    margin-top: 0.2rem;
}

.atv-quote-form__status {
    min-height: 1.5rem;
    color: var(--atv-brand-navy);
    font-weight: 700;
}

.atv-quote-form__actions,
.atv-quote-form__actions-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.atv-quote-form__secondary {
    border: 0;
    background: transparent;
    color: var(--atv-brand-muted);
    font-weight: 700;
}

.atv-cookie-banner {
    font-family: var(--wp--preset--font-family--body);
}

.atv-legal-details {
    display: grid;
    gap: 0.75rem;
}

.atv-legal-details div {
    display: grid;
    grid-template-columns: 12rem minmax(0, 1fr);
    gap: 1rem;
}

.atv-legal-details dt {
    font-weight: 700;
}

.atv-legal-details dd {
    margin: 0;
    color: var(--atv-brand-muted);
}

@media (max-width: 1100px) {
    .atv-service-grid,
    .atv-frame-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .atv-section-heading h2,
    .atv-page-hero h1,
    .atv-projects-intro h1,
    .atv-project-hero h1,
    .atv-article-hero h1,
    .atv-search-hero h1,
    .atv-start-route__panel h1 {
        font-size: 2.25rem;
    }

    .atv-service-grid,
    .atv-project-grid,
    .atv-blog-grid,
    .atv-contact-layout,
    .atv-about-grid,
    .atv-service-detail__grid,
    .atv-frame-footer__grid,
    .atv-quote-form__grid {
        grid-template-columns: 1fr;
    }

    .atv-frame-footer__subbar,
    .atv-project-hero,
    .atv-start-route__actions,
    .atv-search-form {
        align-items: stretch;
        flex-direction: column;
    }

    .atv-frame-footer__subbar {
        display: grid;
    }

    .atv-frame-footer .atv-frame-footer__brand {
        grid-template-columns: 1fr;
    }

    .atv-quote-modal__dialog {
        inset: 0;
        width: 100%;
        max-height: 100dvh;
        height: 100dvh;
        transform: none;
        border-radius: 0;
    }

    .atv-quote-modal__shell {
        grid-template-columns: 1fr;
        min-height: 100dvh;
    }

    .atv-quote-modal__aside {
        display: none;
    }

    .atv-quote-modal__content {
        padding: 1.25rem;
    }
}

@media (max-width: 640px) {
    .av-container {
        width: min(100% - 1.5rem, 82.5rem);
    }

    .atv-servicii-shell,
    .atv-servicii-hero,
    .atv-servicii-sticky-wrap,
    .atv-servicii-interactive-wrap,
    .atv-servicii-cta-wrap {
        max-width: 100%;
        overflow-x: clip;
    }

    .atv-servicii-hero {
        padding-block: 2.5rem 3.25rem;
    }

    .atv-servicii-hero h1,
    .atv-servicii-hero__title {
        max-width: 20rem;
        font-size: 2rem;
        line-height: 1.08;
        overflow-wrap: break-word;
    }

    .atv-servicii-hero p,
    .atv-servicii-hero__lead {
        max-width: 20rem;
        font-size: 1rem;
        line-height: 1.7;
        overflow-wrap: break-word;
    }

    .atv-servicii-sticky {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: calc(100vw - 1.5rem) !important;
        max-width: calc(100vw - 1.5rem) !important;
        min-width: 0;
        margin-inline: auto !important;
        padding-inline: 0;
        overflow: visible;
    }

    .atv-servicii-sticky a {
        width: 100% !important;
        max-width: none;
        min-height: 2.5rem;
        padding-inline: 0.6rem;
        text-align: center;
        white-space: normal;
    }

    .atv-servicii-interactive {
        width: min(100% - 1.5rem, 82.5rem);
        max-width: 100%;
        margin-inline: auto;
        padding-block: 2.5rem;
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .atv-servicii-list,
    .atv-servicii-panels,
    .atv-serviciu-panel {
        min-width: 0;
        max-width: 100%;
    }

    .atv-servicii-hero__inner {
        width: min(100% - 1.5rem, 82.5rem);
        padding-inline: 0 !important;
    }

    .atv-page-shell > .av-container,
    .atv-archive-shell > .av-container,
    .atv-projects-shell > .av-container,
    .atv-project-view > .av-container,
    .atv-service-detail > .av-container {
        width: calc(100vw - 1.5rem) !important;
        max-width: calc(100vw - 1.5rem) !important;
    }

    .atv-page-hero h1,
    .atv-projects-intro h1,
    .atv-project-hero h1,
    .atv-article-hero h1,
    .atv-search-hero h1,
    .atv-start-route__panel h1 {
        max-width: 20rem;
        font-size: 2rem;
        line-height: 1.08;
        overflow-wrap: break-word;
    }

    .atv-page-hero__excerpt,
    .atv-projects-intro__lead,
    .atv-contact-card p,
    .atv-page-content p {
        max-width: 20rem;
        overflow-wrap: break-word;
    }

    .atv-contact-card,
    .atv-page-content,
    .atv-empty-state,
    .atv-post-card,
    .atv-project-card {
        width: min(100%, 20rem) !important;
        min-width: 0;
        max-width: 20rem !important;
        margin-inline: auto;
        overflow: hidden;
        padding: 1.5rem;
    }

    .atv-project-grid,
    .atv-projects-grid,
    .atv-blog-grid {
        width: min(100%, 20rem) !important;
        max-width: 20rem !important;
        margin-inline: auto;
    }

    .atv-project-card__body {
        padding: 1.25rem;
    }

    .atv-project-card__body p {
        max-width: 17rem;
        overflow-wrap: break-word;
    }

    .atv-projects-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        max-width: 20rem;
        overflow: hidden;
    }

    .atv-contact-card .atv-home-hero__primary,
    .atv-start-route__actions button,
    .atv-start-route__actions a {
        width: 100%;
        max-width: 100%;
    }

    .atv-quote-modal__content,
    .atv-quote-form {
        display: block;
        min-height: auto;
    }

    .atv-quote-step.is-current {
        display: grid;
        gap: 0.85rem;
    }

    .atv-quote-step h2 {
        font-size: 1.55rem;
    }

    .atv-quote-form__actions {
        position: static;
        display: grid;
        gap: 0.85rem;
        margin-top: 1.25rem;
        padding: 1rem;
    }

    .atv-quote-form__actions-main {
        justify-content: stretch;
    }

    .atv-quote-form__primary,
    .atv-quote-form__secondary {
        width: 100%;
    }

    .atv-serviciu-panel {
        overflow: hidden;
    }

    body.atv-site .av-gdpr__banner.atv-cookie-banner {
        right: auto !important;
        bottom: 0.75rem;
        left: 50% !important;
        width: calc(100vw - 1.5rem) !important;
        max-width: calc(100vw - 1.5rem) !important;
        box-sizing: border-box;
        margin-inline: 0 !important;
        padding: 1rem;
        border-radius: 0.9rem;
        overflow: hidden;
        transform: translateX(-50%);
    }

    .av-gdpr__content {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .av-gdpr__content > *,
    .av-gdpr__actions,
    .av-gdpr__button {
        min-width: 0;
    }

    .av-gdpr__title {
        width: 17rem;
        max-width: 100%;
        font-size: 1.08rem;
        line-height: 1.22;
        white-space: normal !important;
        overflow-wrap: break-word;
    }

    .av-gdpr__description {
        width: 18rem;
        max-width: 100%;
        font-size: 0.95rem;
        white-space: normal !important;
        overflow-wrap: break-word;
    }

    .av-gdpr__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .av-gdpr__button {
        width: 100%;
    }
}

/* Service editorial polish */
.atv-servicii-shell,
.atv-service-detail--editorial {
    --srv-dark: #07111d;
    --srv-ink: #11203a;
    --srv-muted: #5f6f88;
    --srv-line: rgba(17, 32, 58, 0.12);
    --srv-line-strong: rgba(17, 32, 58, 0.22);
    --srv-navy: #324e82;
    --srv-bg: #f3f6fb;
    --srv-surface: #ffffff;
}

.atv-servicii-shell {
    background: var(--srv-bg);
}

.atv-servicii-hero {
    position: relative;
    isolation: isolate;
    min-height: 42rem;
    overflow: hidden;
    padding-block: 5rem;
    background: var(--srv-dark);
    color: #ffffff;
}

.atv-servicii-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 10, 18, 0.92) 0%, rgba(7, 17, 29, 0.76) 47%, rgba(7, 17, 29, 0.28) 100%),
        linear-gradient(180deg, rgba(7, 17, 29, 0.24) 0%, rgba(7, 17, 29, 0.9) 100%);
}

.atv-servicii-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.atv-servicii-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.atv-servicii-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88) contrast(1.05);
}

.atv-servicii-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 48rem) minmax(18rem, 26rem);
    align-items: end;
    gap: 4rem;
    min-height: 32rem;
}

.atv-servicii-hero__content {
    display: grid;
    gap: 1.25rem;
    align-content: end;
}

.atv-servicii-hero .atv-kicker {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.2;
}

.atv-servicii-hero .atv-kicker::before {
    background: rgba(255, 255, 255, 0.55);
}

.atv-servicii-hero__title,
.atv-servicii-hero h1 {
    max-width: 11ch;
    margin: 0;
    color: #ffffff;
    font-size: 4.75rem;
    font-weight: 650;
    line-height: 0.98;
}

.atv-servicii-hero__lead {
    max-width: 42rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    line-height: 1.75;
}

.atv-servicii-hero__actions,
.atv-service-detail__hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.atv-servicii-hero__primary,
.atv-servicii-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.9rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    background: #ffffff;
    color: var(--srv-dark);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.atv-servicii-hero__primary:hover,
.atv-servicii-hero__primary:focus-visible,
.atv-servicii-cta__btn:hover,
.atv-servicii-cta__btn:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.24);
    outline: none;
}

.atv-servicii-hero__secondary,
.atv-servicii-cta__link {
    display: inline-flex;
    align-items: center;
    min-height: 3.25rem;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 750;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    transition: color 180ms ease, border-color 180ms ease;
}

.atv-servicii-hero__secondary:hover,
.atv-servicii-hero__secondary:focus-visible,
.atv-servicii-cta__link:hover,
.atv-servicii-cta__link:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    outline: none;
}

.atv-servicii-hero__stats {
    align-self: end;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.atv-servicii-hero__stat {
    display: grid;
    gap: 0.35rem;
    padding: 1.25rem;
    background: rgba(7, 17, 29, 0.5);
}

.atv-servicii-hero__stat strong {
    color: #ffffff;
    font-size: 2.4rem;
    font-weight: 750;
    line-height: 1;
}

.atv-servicii-hero__stat span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.atv-servicii-sticky-wrap {
    top: var(--atv-header-height);
    z-index: 15;
    padding-block: 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(17, 32, 58, 0.08);
    box-shadow: 0 16px 40px rgba(17, 32, 58, 0.06);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.atv-servicii-sticky {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
}

.atv-servicii-sticky a {
    min-height: 2.5rem;
    padding: 0 1rem;
    border: 1px solid rgba(17, 32, 58, 0.1);
    border-radius: 999px;
    color: var(--srv-ink);
    background: #ffffff;
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.atv-servicii-sticky a.is-current,
.atv-servicii-sticky a:hover,
.atv-servicii-sticky a:focus-visible {
    border-color: rgba(50, 78, 130, 0.28);
    background: var(--srv-navy);
    color: #ffffff;
    outline: none;
}

.atv-servicii-interactive-wrap,
.atv-service-detail__overview-wrap {
    background:
        linear-gradient(180deg, #f5f8fc 0%, #eef3f9 100%);
}

.atv-servicii-interactive {
    display: grid;
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 2fr);
    gap: 1.25rem;
    align-items: start;
    padding-block: 4.5rem;
}

.atv-servicii-list {
    position: sticky;
    top: calc(var(--atv-header-height) + 4.5rem);
    display: grid;
    gap: 0.5rem;
}

.atv-servicii-list__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    min-height: 4rem;
    padding: 0.95rem 1rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    color: var(--srv-muted);
    text-decoration: none;
}

.atv-servicii-list__item.is-active,
.atv-servicii-list__item:hover,
.atv-servicii-list__item:focus-visible {
    border-color: rgba(17, 32, 58, 0.12);
    background: #ffffff;
    color: var(--srv-ink);
    outline: none;
}

.atv-servicii-list__num {
    color: var(--srv-navy);
    font-size: 0.75rem;
    font-weight: 850;
}

.atv-servicii-list__name {
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.25;
}

.atv-servicii-list__arrow {
    color: var(--srv-navy);
    opacity: 1;
}

.atv-servicii-panels {
    display: grid;
    gap: 1rem;
    min-height: 0;
}

.atv-serviciu-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    overflow: hidden;
    min-height: 28rem;
    border: 1px solid rgba(17, 32, 58, 0.1);
    border-radius: 1.5rem;
    background: #ffffff;
    box-shadow: 0 26px 80px rgba(17, 32, 58, 0.08);
    scroll-margin-top: calc(var(--atv-header-height) + 5rem);
}

.atv-serviciu-panel__media {
    min-height: 100%;
    background: #0d1628;
}

.atv-serviciu-panel__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 28rem;
    object-fit: cover;
}

.atv-serviciu-panel__body {
    position: relative;
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 2.2rem;
}

.atv-serviciu-panel__index {
    position: absolute;
    top: 1.1rem;
    right: 1.35rem;
    color: rgba(17, 32, 58, 0.07);
    font-size: 5.5rem;
    font-weight: 850;
    line-height: 1;
    pointer-events: none;
}

.atv-serviciu-panel__eyebrow,
.atv-service-detail__card-eyebrow {
    margin: 0;
    color: var(--srv-navy);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.atv-serviciu-panel h2,
.atv-service-detail__card h2,
.atv-servicii-process h2,
.atv-servicii-cta h2 {
    margin: 0;
    letter-spacing: 0;
}

.atv-serviciu-panel h2 {
    max-width: 14ch;
    color: var(--srv-ink);
    font-size: 2.15rem;
    line-height: 1.05;
}

.atv-serviciu-panel p:not(.atv-serviciu-panel__eyebrow) {
    margin: 0;
    color: var(--srv-muted);
    line-height: 1.75;
}

.atv-serviciu-panel ul,
.atv-service-detail__card ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(17, 32, 58, 0.1);
    list-style: none;
}

.atv-serviciu-panel li,
.atv-service-detail__card li {
    display: flex;
    gap: 0.7rem;
    color: var(--srv-ink);
    line-height: 1.55;
}

.atv-serviciu-panel li::before,
.atv-service-detail__card li::before {
    content: "";
    flex: 0 0 auto;
    width: 0.45rem;
    height: 0.45rem;
    margin-top: 0.55em;
    border-radius: 999px;
    background: var(--srv-navy);
}

.atv-serviciu-panel__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: start;
    min-height: 2.9rem;
    margin-top: 0.35rem;
    padding: 0.78rem 1.05rem;
    border-radius: 0.95rem;
    background: var(--srv-navy);
    color: #ffffff;
    font-weight: 850;
    text-decoration: none;
}

.atv-serviciu-panel__cta:hover,
.atv-serviciu-panel__cta:focus-visible {
    background: #213963;
    outline: none;
}

.atv-service-detail--editorial {
    padding: 0;
    background: #f3f6fb;
}

.atv-service-detail__hero {
    position: relative;
    isolation: isolate;
    min-height: 40rem;
    overflow: hidden;
    background: var(--srv-dark);
    color: #ffffff;
}

.atv-service-detail__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 10, 18, 0.9) 0%, rgba(7, 17, 29, 0.72) 48%, rgba(7, 17, 29, 0.24) 100%),
        linear-gradient(180deg, rgba(7, 17, 29, 0.16) 0%, rgba(7, 17, 29, 0.92) 100%);
}

.atv-service-detail__hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.atv-service-detail__hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) contrast(1.04);
}

.atv-service-detail__hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 45rem) minmax(16rem, 24rem);
    align-items: end;
    gap: 3rem;
    min-height: 40rem;
    padding-block: 5rem;
}

.atv-service-detail__hero-copy {
    display: grid;
    gap: 1rem;
}

.atv-service-detail__hero .atv-kicker {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.2;
}

.atv-service-detail__hero .atv-kicker::before {
    background: rgba(255, 255, 255, 0.55);
}

.atv-service-detail__hero h1 {
    max-width: 12ch;
    margin: 0;
    color: #ffffff;
    font-size: 4.5rem;
    font-weight: 650;
    line-height: 0.98;
}

.atv-service-detail__hero .atv-page-hero__excerpt {
    max-width: 39rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.08rem;
    line-height: 1.75;
}

.atv-service-detail__hero-proof {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.25rem;
    background: rgba(7, 17, 29, 0.54);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.atv-service-detail__hero-proof span {
    color: rgba(255, 255, 255, 0.24);
    font-size: 4rem;
    font-weight: 850;
    line-height: 1;
}

.atv-service-detail__hero-proof p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.65;
}

.atv-service-detail__overview-wrap {
    padding-block: 4rem;
}

.atv-service-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1rem;
}

.atv-service-detail__card {
    display: grid;
    gap: 0.9rem;
    padding: 2rem;
    border: 1px solid rgba(17, 32, 58, 0.1);
    border-radius: 1.35rem;
    background: #ffffff;
    box-shadow: 0 22px 70px rgba(17, 32, 58, 0.06);
}

.atv-service-detail__card h2 {
    color: var(--srv-ink);
    font-size: 2rem;
    line-height: 1.08;
}

.atv-service-detail__card p:not(.atv-service-detail__card-eyebrow) {
    margin: 0;
    color: var(--srv-muted);
    line-height: 1.75;
}

.atv-servicii-process-wrap {
    position: relative;
    overflow: hidden;
    padding-block: 4.75rem;
    background:
        linear-gradient(135deg, #07111d 0%, #0d1628 52%, #122342 100%);
    color: #ffffff;
}

.atv-servicii-process-wrap::before {
    content: none;
}

.atv-servicii-process {
    display: grid;
    gap: 1.5rem;
}

.atv-servicii-process .atv-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.atv-servicii-process .atv-kicker::before {
    background: rgba(255, 255, 255, 0.42);
}

.atv-servicii-process h2 {
    max-width: 42rem;
    color: #ffffff;
    font-size: 3rem;
    line-height: 1.05;
}

.atv-servicii-process__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
}

.atv-servicii-process__list::before {
    content: none;
}

.atv-servicii-process__item,
.atv-servicii-process__item.is-open {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0.85rem;
    min-height: 14rem;
    padding: 1.5rem;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.045);
}

.atv-servicii-process__num,
.atv-servicii-process__item.is-open .atv-servicii-process__num {
    position: static;
    transform: none;
    width: auto;
    color: rgba(255, 255, 255, 0.26);
    font-size: 3.25rem;
    font-weight: 850;
    line-height: 1;
}

.atv-servicii-process__title {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 850;
}

.atv-servicii-process__content,
.atv-servicii-process__item.is-open .atv-servicii-process__content {
    max-height: none;
    overflow: visible;
    opacity: 1;
}

.atv-servicii-process__content p {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
}

.atv-servicii-cta-wrap {
    position: relative;
    overflow: hidden;
    padding-block: 5rem;
    background:
        linear-gradient(90deg, rgba(5, 10, 18, 0.94) 0%, rgba(7, 17, 29, 0.86) 48%, rgba(7, 17, 29, 0.62) 100%),
        url("alttvision/pages/services-hero-editorial.webp") center center / cover no-repeat;
    color: #ffffff;
}

.atv-servicii-cta-wrap::before {
    content: none;
}

.atv-servicii-cta {
    position: relative;
    display: grid;
    gap: 1rem;
    max-width: 48rem;
}

.atv-servicii-cta-wrap .atv-kicker {
    color: rgba(255, 255, 255, 0.64);
}

.atv-servicii-cta-wrap .atv-kicker::before {
    background: rgba(255, 255, 255, 0.45);
}

.atv-servicii-cta h2 {
    color: #ffffff;
    font-size: 3.6rem;
    line-height: 1.02;
}

.atv-servicii-cta > p {
    max-width: 42rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.75;
}

.atv-servicii-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 1100px) {
    .atv-servicii-hero__inner,
    .atv-service-detail__hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .atv-servicii-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .atv-servicii-hero__title,
    .atv-servicii-hero h1,
    .atv-service-detail__hero h1 {
        max-width: 14ch;
        font-size: 3.5rem;
    }

    .atv-servicii-interactive {
        grid-template-columns: 1fr;
    }

    .atv-servicii-list {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .atv-servicii-hero,
    .atv-service-detail__hero {
        min-height: 34rem;
    }

    .atv-servicii-hero__inner,
    .atv-service-detail__hero-inner {
        min-height: 34rem;
        padding-block: 3.5rem;
    }

    .atv-serviciu-panel,
    .atv-service-detail__grid,
    .atv-servicii-process__list {
        grid-template-columns: 1fr;
    }

    .atv-serviciu-panel__media img {
        min-height: 18rem;
        aspect-ratio: 16 / 10;
    }

    .atv-service-detail__hero-proof {
        display: none;
    }

    .atv-servicii-process__item,
    .atv-servicii-process__item.is-open {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .atv-servicii-shell,
    .atv-service-detail--editorial {
        overflow-x: clip;
    }

    .atv-servicii-hero,
    .atv-service-detail__hero {
        min-height: auto;
        padding-block: 0;
    }

    .atv-servicii-hero::before,
    .atv-service-detail__hero::before {
        background:
            linear-gradient(180deg, rgba(5, 10, 18, 0.72) 0%, rgba(7, 17, 29, 0.94) 100%),
            linear-gradient(90deg, rgba(5, 10, 18, 0.84), rgba(7, 17, 29, 0.34));
    }

    .atv-servicii-hero__inner,
    .atv-service-detail__hero-inner {
        width: min(100% - 1.5rem, 82.5rem);
        min-height: 33rem;
        padding-block: 3rem;
    }

    .atv-servicii-hero__title,
    .atv-servicii-hero h1,
    .atv-service-detail__hero h1 {
        max-width: 100%;
        font-size: 2.55rem;
        line-height: 1.04;
        overflow-wrap: break-word;
    }

    .atv-servicii-hero__lead,
    .atv-service-detail__hero .atv-page-hero__excerpt,
    .atv-servicii-cta > p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.68;
        overflow-wrap: break-word;
    }

    .atv-servicii-hero__actions,
    .atv-service-detail__hero-actions,
    .atv-servicii-cta__actions {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .atv-servicii-hero__primary,
    .atv-servicii-hero__secondary,
    .atv-servicii-cta__btn,
    .atv-servicii-cta__link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .atv-servicii-hero__stats {
        grid-template-columns: 1fr;
    }

    .atv-servicii-sticky {
        display: flex !important;
        width: min(100% - 1.5rem, 82.5rem) !important;
        max-width: none !important;
        overflow-x: auto;
    }

    .atv-servicii-sticky a {
        width: auto !important;
        white-space: nowrap;
    }

    .atv-servicii-interactive {
        width: min(100% - 1.5rem, 82.5rem);
        padding-block: 2.75rem;
    }

    .atv-servicii-list {
        grid-template-columns: 1fr;
    }

    .atv-serviciu-panel {
        border-radius: 1.15rem;
        min-height: 0;
    }

    .atv-serviciu-panel__body,
    .atv-service-detail__card {
        padding: 1.35rem;
    }

    .atv-serviciu-panel__index {
        top: 0.9rem;
        right: 1rem;
        font-size: 4rem;
    }

    .atv-serviciu-panel h2,
    .atv-service-detail__card h2 {
        max-width: 100%;
        font-size: 1.75rem;
    }

    .atv-service-detail__overview-wrap,
    .atv-servicii-process-wrap,
    .atv-servicii-cta-wrap {
        padding-block: 2.75rem;
    }

    .atv-service-detail__grid {
        width: min(100% - 1.5rem, 82.5rem) !important;
        max-width: none !important;
    }

    .atv-servicii-process h2,
    .atv-servicii-cta h2 {
        max-width: 100%;
        font-size: 2.25rem;
        line-height: 1.06;
        overflow-wrap: break-word;
    }

    .atv-servicii-process__num,
    .atv-servicii-process__item.is-open .atv-servicii-process__num {
        font-size: 2.6rem;
    }
}
