/* ═══════════════════════════════════════════════════════════
   CC PRO BAU — STYLE.CSS
   1. Tokens         8.  Înainte/După
   2. Reset & bază   9.  Player video
   3. Utilitare      10. Despre / Proces
   4. Topbar/Header  11. Proiecte / Recenzii / FAQ
   5. Hero           12. Contact & formular
   6. Trust          13. Footer & flotante
   7. Servicii       14. Galerie · 15. Responsive
   ═══════════════════════════════════════════════════════════ */


/* ═══ 1. TOKENS ═══════════════════════════════════════════ */

:root {
    /* — Neutre reci — */
    --ink-950: #080B0F;
    --ink-900: #0E1116;
    --ink-800: #161B23;
    --ink-700: #1F2630;
    --ink-600: #2D3643;
    --ink-500: #4A5566;
    --ink-400: #6B7687;
    --ink-300: #9AA4B2;
    --ink-200: #C9D0DA;
    --ink-100: #E4E8EE;
    --ink-50:  #F1F3F7;
    --paper:   #F6F7F9;
    --white:   #FFFFFF;

    /* — Accent ocru industrial — */
    --accent:      #E8A33D;
    --accent-600:  #C9852A;
    --accent-700:  #A66B1C;
    --accent-300:  #F3C784;
    --accent-soft: rgba(232, 163, 61, .12);
    --accent-glow: rgba(232, 163, 61, .32);

    /* — Semantice — */
    --success: #16A34A;
    --danger:  #DC2626;

    /* — Tipografie — */
    --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
    --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

    --fs-xs:   .75rem;
    --fs-sm:   .875rem;
    --fs-base: 1rem;
    --fs-lg:   clamp(1.05rem, .4vw + .95rem, 1.2rem);
    --fs-h3:   clamp(1.15rem, .6vw + 1rem, 1.4rem);
    --fs-h2:   clamp(1.9rem, 2.6vw + 1rem, 3.1rem);
    --fs-h1:   clamp(2.5rem, 4.2vw + 1rem, 4.6rem);

    /* — Spațiere — */
    --s-1: .25rem;  --s-2: .5rem;   --s-3: .75rem;
    --s-4: 1rem;    --s-5: 1.25rem; --s-6: 1.5rem;
    --s-8: 2rem;    --s-10: 2.5rem; --s-12: 3rem;
    --s-16: 4rem;   --s-20: 5rem;
    --section-y: clamp(4.5rem, 8vw, 8rem);

    /* — Formă — */
    --r-xs: 6px;  --r-sm: 10px;  --r-md: 16px;
    --r-lg: 24px; --r-xl: 32px;  --r-full: 999px;

    /* — Umbre — */
    --sh-1: 0 1px 2px rgba(8, 11, 15, .06),
            0 1px 3px rgba(8, 11, 15, .08);
    --sh-2: 0 4px 12px rgba(8, 11, 15, .08),
            0 2px 4px rgba(8, 11, 15, .04);
    --sh-3: 0 12px 32px rgba(8, 11, 15, .10),
            0 4px 8px rgba(8, 11, 15, .05);
    --sh-4: 0 28px 64px rgba(8, 11, 15, .16),
            0 8px 16px rgba(8, 11, 15, .06);
    --sh-accent: 0 10px 28px rgba(232, 163, 61, .32);

    /* — Layout — */
    --container: 1200px;
    --container-narrow: 820px;
    --gutter: clamp(1.15rem, 4vw, 2.5rem);

    --topbar-h: 40px;
    --header-h: 74px;

    /* — Mișcare — */
    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-in-out: cubic-bezier(.65, 0, .35, 1);
    --t-fast: .18s;
    --t: .3s;
    --t-slow: .55s;
}


/* ═══ 2. RESET & BAZĂ ═════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink-800);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

img,
video {
    height: auto;
}

h1, h2, h3, h4 {
    color: var(--ink-900);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.02em;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

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

button {
    background: none;
    border: 0;
    cursor: pointer;
}

::selection {
    background: var(--accent);
    color: var(--ink-900);
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: var(--r-xs);
}

/* Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--ink-300) transparent;
}

*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }

*::-webkit-scrollbar-thumb {
    background: var(--ink-300);
    border: 3px solid var(--paper);
    border-radius: var(--r-full);
}

*::-webkit-scrollbar-thumb:hover { background: var(--ink-400); }


/* ═══ 3. UTILITARE ════════════════════════════════════════ */

.container {
    width: min(100%, var(--container));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container--narrow {
    width: min(100%, var(--container-narrow));
}

.section {
    position: relative;
    padding-block: var(--section-y);
}

.section--alt  { background: var(--ink-50); }

.section--dark {
    background: var(--ink-900);
    color: var(--ink-200);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }

.skip-link {
    position: absolute;
    top: -100px;
    left: var(--s-4);
    z-index: 999;
    padding: var(--s-3) var(--s-5);
    border-radius: var(--r-sm);
    background: var(--accent);
    color: var(--ink-900);
    font-weight: 600;
    transition: top var(--t) var(--ease);
}

.skip-link:focus { top: var(--s-4); }

/* — Etichete & titluri de secțiune — */

.section-head {
    max-width: 680px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-6);
    max-width: none;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    margin-bottom: var(--s-4);
    color: var(--accent-700);
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-label::before {
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: var(--r-full);
    content: "";
}

.section-head--light .section-label { color: var(--accent); }

.section-title {
    margin-bottom: var(--s-4);
    font-size: var(--fs-h2);
    font-weight: 600;
}

.section-title em {
    color: var(--accent);
    font-style: normal;
}

.section-sub {
    max-width: 58ch;
    color: var(--ink-500);
    font-size: var(--fs-lg);
    line-height: 1.7;
}

.section-head--light .section-sub { color: var(--ink-300); }

/* — Butoane — */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-2);
    padding: .82rem 1.6rem;
    border: 1px solid transparent;
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: .01em;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color var(--t) var(--ease),
                color var(--t) var(--ease),
                border-color var(--t) var(--ease),
                transform var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform var(--t) var(--ease);
}

.btn:hover svg { transform: translateX(3px); }

.btn--lg {
    padding: 1.02rem 2.1rem;
    font-size: var(--fs-base);
}

.btn--block { width: 100%; }

.btn--primary {
    background: var(--accent);
    color: var(--ink-900);
    box-shadow: var(--sh-accent);
}

.btn--primary:hover {
    background: var(--accent-300);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(232, 163, 61, .42);
}

.btn--dark {
    background: var(--ink-900);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--ink-700);
    transform: translateY(-2px);
    box-shadow: var(--sh-3);
}

.btn--outline {
    border-color: var(--ink-200);
    background: transparent;
    color: var(--ink-900);
}

.btn--outline:hover {
    border-color: var(--ink-900);
    background: var(--ink-900);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .07);
    color: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, .16);
    transform: translateY(-2px);
}

.btn__spinner { display: none; }

.btn.is-loading { pointer-events: none; opacity: .75; }
.btn.is-loading .btn__label { opacity: .5; }

.btn.is-loading .btn__spinner {
    display: block;
    width: 17px;
    height: 17px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* — Badge, chip, mini-badge — */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: .42rem .95rem;
    border-radius: var(--r-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.badge--light {
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 var(--accent-glow);
    animation: ping 2.4s var(--ease) infinite;
}

@keyframes ping {
    0%        { box-shadow: 0 0 0 0 var(--accent-glow); }
    70%, 100% { box-shadow: 0 0 0 9px rgba(232, 163, 61, 0); }
}

.chip {
    padding: .5rem 1.1rem;
    border: 1px solid var(--ink-600);
    border-radius: var(--r-full);
    background: transparent;
    color: var(--ink-200);
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: all var(--t) var(--ease);
}

.chip:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.chip.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink-900);
    font-weight: 600;
}

.mini-badge {
    display: inline-block;
    padding: .34rem .8rem;
    border: 1px solid rgba(232, 163, 61, .34);
    border-radius: var(--r-full);
    background: var(--accent-soft);
    color: var(--accent-300);
    font-size: var(--fs-xs);
    font-weight: 600;
}

/* — Reveal la scroll — */

.has-js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease),
                transform .7s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.has-js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}


/* ═══ 4. TOPBAR & HEADER ══════════════════════════════════ */

.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 101;
    height: var(--topbar-h);
    background: var(--ink-950);
    color: var(--ink-300);
    font-size: var(--fs-xs);
    transition: transform var(--t) var(--ease);
}

body.is-scrolled .topbar { transform: translateY(-100%); }

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-4);
    height: 100%;
    width: min(100%, var(--container));
    margin-inline: auto;
    padding-inline: var(--gutter);
    overflow: hidden;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    letter-spacing: .02em;
}

.topbar__item svg {
    width: 13px;
    height: 13px;
    fill: var(--accent);
    flex-shrink: 0;
}

.topbar__item--link { transition: color var(--t-fast) ease; }
.topbar__item--link:hover { color: var(--white); }

.topbar__sep {
    width: 1px;
    height: 13px;
    background: var(--ink-700);
}

/* — Header — */

.site-header {
    position: fixed;
    top: var(--topbar-h);
    right: 0;
    left: 0;
    z-index: 100;
    transition: top var(--t) var(--ease),
                background-color var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
}

body.is-scrolled .site-header {
    top: 0;
    background: rgba(14, 17, 22, .9);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .07),
                0 10px 30px rgba(8, 11, 15, .3);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-6);
    height: var(--header-h);
    width: min(100%, var(--container));
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.logo a {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo img {
    width: auto;
    height: 40px;
    object-fit: contain;
    transition: height var(--t) var(--ease);
}

body.is-scrolled .logo img { height: 34px; }

/* — Navigație — */

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(.5rem, 1.6vw, 1.6rem);
}

.main-nav a {
    position: relative;
    padding: .55rem .15rem;
    color: rgba(255, 255, 255, .88);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: .01em;
    transition: color var(--t-fast) ease;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: .2rem;
    left: 0;
    height: 2px;
    border-radius: var(--r-full);
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t) var(--ease);
}

.main-nav a:hover,
.main-nav a.is-current { color: var(--accent); }

.main-nav a:hover::after,
.main-nav a.is-current::after { transform: scaleX(1); }

.main-nav__cta {
    margin-left: var(--s-2);
    padding: .62rem 1.3rem !important;
    border-radius: var(--r-full);
    background: var(--accent);
    color: var(--ink-900) !important;
    font-weight: 600;
    transition: all var(--t) var(--ease);
}

.main-nav__cta::after { display: none; }

.main-nav__cta:hover {
    background: var(--accent-300);
    transform: translateY(-2px);
    box-shadow: var(--sh-accent);
}

/* — Hamburger — */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: var(--r-sm);
}

.nav-toggle__bar {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: var(--r-full);
    background: var(--white);
    transition: transform var(--t) var(--ease),
                opacity var(--t-fast) ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* — Bara de progres — */

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-600), var(--accent-300));
    transition: width .1s linear;
}


/* ═══ 5. HERO ═════════════════════════════════════════════ */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    padding: calc(var(--topbar-h) + var(--header-h) + 3rem)
             var(--gutter) 6rem;
    overflow: hidden;
    color: var(--white);
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: heroZoom 20s var(--ease-in-out) forwards;
}

@keyframes heroZoom { to { transform: scale(1); } }

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(120% 90% at 20% 15%, rgba(8, 11, 15, .58), transparent 62%),
        linear-gradient(180deg, rgba(8, 11, 15, .74) 0%,
                                rgba(8, 11, 15, .46) 42%,
                                rgba(8, 11, 15, .88) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, 880px);
    text-align: center;
}

.hero h1 {
    margin: var(--s-6) 0 var(--s-5);
    color: var(--white);
    font-size: var(--fs-h1);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -.035em;
}

.hero h1 em {
    position: relative;
    color: var(--accent);
    font-style: normal;
}

.hero__content > p {
    max-width: 58ch;
    margin: 0 auto var(--s-8);
    color: rgba(255, 255, 255, .84);
    font-size: var(--fs-lg);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--s-4);
    margin-bottom: var(--s-10);
}

.hero__points {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--s-3) var(--s-8);
    color: rgba(255, 255, 255, .78);
    font-size: var(--fs-sm);
}

.hero__points li {
    display: flex;
    align-items: center;
    gap: var(--s-2);
}

.hero__points li::before {
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink-900);
    font-size: 11px;
    font-weight: 800;
    content: "✓";
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: var(--s-8);
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: var(--r-full);
    transform: translateX(-50%);
    transition: border-color var(--t) ease;
}

.hero__scroll:hover { border-color: var(--accent); }

.hero__scroll span {
    width: 4px;
    height: 8px;
    border-radius: var(--r-full);
    background: var(--white);
    animation: scrollDot 1.9s var(--ease) infinite;
}

@keyframes scrollDot {
    0%        { transform: translateY(-7px); opacity: 0; }
    35%, 65%  { opacity: 1; }
    100%      { transform: translateY(8px);  opacity: 0; }
}


/* ═══ 6. TRUST ════════════════════════════════════════════ */

.trust {
    position: relative;
    z-index: 3;
    margin-top: -3.5rem;
    padding-bottom: var(--s-4);
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--ink-100);
    box-shadow: var(--sh-4);
}

.trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-2);
    padding: clamp(1.5rem, 3vw, 2.4rem) var(--s-4);
    background: var(--white);
    text-align: center;
    transition: background-color var(--t) ease;
}

.trust__item:hover { background: var(--ink-50); }

.trust__num {
    color: var(--ink-900);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    font-variant-numeric: tabular-nums;
}

.trust__num::after {
    color: var(--accent);
    content: attr(data-suffix);
}

.trust__label {
    color: var(--ink-500);
    font-size: var(--fs-sm);
    line-height: 1.45;
}


/* ═══ 7. SERVICII ═════════════════════════════════════════ */

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.s-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(1.6rem, 2.6vw, 2.2rem);
    border: 1px solid var(--ink-100);
    border-radius: var(--r-lg);
    background: var(--white);
    overflow: hidden;
    transition: transform var(--t) var(--ease),
                box-shadow var(--t) var(--ease),
                border-color var(--t) var(--ease);
}

.s-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-300));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-slow) var(--ease);
}

.s-card:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: var(--sh-4);
}

.s-card:hover::before { transform: scaleX(1); }

.s-card--featured {
    border-color: var(--accent);
    background:
        linear-gradient(160deg, var(--accent-soft), transparent 55%),
        var(--white);
}

.s-card--featured::before { transform: scaleX(1); }

.s-card__tag {
    position: absolute;
    top: var(--s-5);
    right: var(--s-5);
    padding: .26rem .7rem;
    border-radius: var(--r-full);
    background: var(--accent);
    color: var(--ink-900);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.s-card__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: var(--s-5);
    border-radius: var(--r-md);
    background: var(--accent-soft);
    transition: background-color var(--t) ease,
                transform var(--t) var(--ease);
}

.s-card:hover .s-card__icon {
    background: var(--accent);
    transform: rotate(-6deg) scale(1.05);
}

.s-card__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--accent-700);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke var(--t) ease;
}

.s-card:hover .s-card__icon svg { stroke: var(--ink-900); }

.s-card h3 {
    margin-bottom: var(--s-3);
    font-size: var(--fs-h3);
}

.s-card > p {
    margin-bottom: var(--s-5);
    color: var(--ink-500);
    font-size: var(--fs-sm);
    line-height: 1.7;
    flex-grow: 1;
}

.s-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    padding-top: var(--s-5);
    border-top: 1px dashed var(--ink-200);
}

.s-card__list li {
    display: flex;
    align-items: center;
    gap: var(--s-2);
    color: var(--ink-600);
    font-size: var(--fs-sm);
}

.s-card__list li::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
    flex-shrink: 0;
}

.services__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--s-5);
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border: 1px dashed var(--ink-200);
    border-radius: var(--r-lg);
    text-align: center;
}

.services__cta p {
    color: var(--ink-500);
    font-size: var(--fs-lg);
}


/* ═══ 8. ÎNAINTE / DUPĂ ═══════════════════════════════════ */

.ba-section { overflow: hidden; }

.ba-section::before {
    position: absolute;
    top: -180px;
    right: -180px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-soft), transparent 68%);
    content: "";
    pointer-events: none;
}

.ba-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: clamp(1.2rem, 2.4vw, 2rem);
}

.ba-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ink-700);
    border-radius: var(--r-lg);
    background: var(--ink-800);
    transition: border-color var(--t) ease,
                transform var(--t) var(--ease),
                box-shadow var(--t) var(--ease),
                opacity var(--t) ease;
}

.ba-card:hover {
    border-color: var(--accent-600);
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .42);
}

.ba-card.is-hidden {
    display: none;
}

/* Componenta de comparație */

.ba {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--ink-700);
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    cursor: ew-resize;
}

.ba__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba__img--before {
    clip-path: inset(0 50% 0 0);
    will-change: clip-path;
}

.ba__tag {
    position: absolute;
    bottom: var(--s-4);
    z-index: 3;
    padding: .34rem .78rem;
    border-radius: var(--r-full);
    background: rgba(8, 11, 15, .72);
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.ba__tag--l { left: var(--s-4); }
.ba__tag--r { right: var(--s-4); }

.ba__handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 4;
    width: 3px;
    background: var(--accent);
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 14px rgba(232, 163, 61, .6);
    will-change: left;
}

.ba__grip {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
    transition: transform var(--t) var(--ease);
}

.ba:hover .ba__grip {
    transform: translate(-50%, -50%) scale(1.1);
}

.ba__grip::before,
.ba__grip::after {
    position: absolute;
    color: var(--ink-900);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.ba__grip::before { left: 9px;  content: "‹"; }
.ba__grip::after  { right: 9px; content: "›"; }

.ba-card__body {
    padding: clamp(1.2rem, 2.4vw, 1.7rem);
}

.ba-card__body h3 {
    margin-bottom: var(--s-2);
    color: var(--white);
    font-size: var(--fs-h3);
}

.ba-card__body p {
    color: var(--ink-300);
    font-size: var(--fs-sm);
    line-height: 1.65;
}

.ba-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-4);
    margin-top: var(--s-4);
    padding-top: var(--s-4);
    border-top: 1px solid var(--ink-700);
    color: var(--ink-400);
    font-size: var(--fs-xs);
    font-weight: 500;
}


/* ═══ 9. PLAYER VIDEO ═════════════════════════════════════ */

.showcase__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(290px, .95fr);
    align-items: start;
    gap: clamp(1.5rem, 3.5vw, 3rem);
}

.player__frame {
    position: relative;
    width: min(100%, 440px);
    margin-inline: auto;
    aspect-ratio: 9 / 16;
    max-height: 74svh;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--ink-950);
    box-shadow: var(--sh-4);
}

.player__frame video {
    width: 100%;
    height: 100%;
    background: var(--ink-950);
    object-fit: cover;
}

.player__big {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(8, 11, 15, .34);
    transition: opacity var(--t) ease, visibility var(--t);
}

.player__big svg {
    width: 34px;
    height: 34px;
    margin-left: 4px;
    fill: var(--ink-900);
}

.player__big::before {
    position: absolute;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--accent);
    content: "";
    box-shadow: 0 0 0 0 var(--accent-glow);
    animation: ping 2.6s var(--ease) infinite;
    transition: transform var(--t) var(--ease);
}

.player__big:hover::before { transform: scale(1.08); }

.player__big.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.player__bar {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: var(--s-2);
    padding: 2.4rem .8rem .8rem;
    background: linear-gradient(to top, rgba(8, 11, 15, .92), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--t) ease, transform var(--t) var(--ease);
}

.player__frame:hover .player__bar,
.player__frame:focus-within .player__bar,
.player__bar.is-shown {
    opacity: 1;
    transform: none;
}

.player__btn {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: var(--r-xs);
    flex-shrink: 0;
    transition: background-color var(--t-fast) ease;
}

.player__btn:hover { background: rgba(255, 255, 255, .16); }

.player__btn svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    stroke: var(--white);
    stroke-width: 0;
}

.player__btn .ico-pause,
.player__btn .ico-sound { display: none; }

.player.is-playing .ico-play  { display: none; }
.player.is-playing .ico-pause { display: block; }

.player.is-unmuted .ico-muted { display: none; }
.player.is-unmuted .ico-sound { display: block; }

#btnMute svg {
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
}

#btnFull svg {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.player__progress {
    position: relative;
    height: 5px;
    flex: 1;
    min-width: 0;
    border-radius: var(--r-full);
    background: rgba(255, 255, 255, .24);
    cursor: pointer;
}

.player__buffer,
.player__played {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-radius: var(--r-full);
}

.player__buffer {
    width: 0;
    background: rgba(255, 255, 255, .3);
}

.player__played {
    width: 0;
    background: var(--accent);
}

.player__played::after {
    position: absolute;
    top: 50%;
    right: -5px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--white);
    content: "";
    transform: translateY(-50%) scale(0);
    transition: transform var(--t-fast) var(--ease);
}

.player__progress:hover .player__played::after { transform: translateY(-50%) scale(1); }

.player__time {
    color: rgba(255, 255, 255, .86);
    font-size: .7rem;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.player__caption {
    margin-top: var(--s-5);
    text-align: center;
}

.player__caption h3 {
    margin-bottom: var(--s-1);
    font-size: var(--fs-h3);
}

.player__caption p {
    color: var(--ink-500);
    font-size: var(--fs-sm);
}

/* — Playlist — */

.playlist {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ink-100);
    border-radius: var(--r-lg);
    background: var(--white);
    box-shadow: var(--sh-2);
}

.playlist__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-3);
    padding: var(--s-4) var(--s-5);
    border-bottom: 1px solid var(--ink-100);
    background: var(--ink-50);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.playlist__items {
    max-height: 560px;
    overflow-y: auto;
}

.pl-item {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    width: 100%;
    padding: var(--s-3) var(--s-4);
    border-bottom: 1px solid var(--ink-100);
    text-align: left;
    transition: background-color var(--t-fast) ease;
}

.pl-item:last-child { border-bottom: 0; }
.pl-item:hover { background: var(--ink-50); }

.pl-item.is-active {
    background: var(--accent-soft);
    box-shadow: inset 3px 0 0 var(--accent);
}

.pl-item__thumb {
    position: relative;
    width: 58px;
    height: 78px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--r-xs);
    background: var(--ink-200);
}

.pl-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pl-item__thumb::after {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(8, 11, 15, .4);
    color: var(--white);
    font-size: 15px;
    content: "▶";
    opacity: 0;
    transition: opacity var(--t-fast) ease;
}

.pl-item:hover .pl-item__thumb::after { opacity: 1; }

.pl-item__body { min-width: 0; }

.pl-item__title {
    display: block;
    color: var(--ink-900);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.3;
}

.pl-item__meta {
    display: block;
    margin-top: 2px;
    color: var(--ink-400);
    font-size: var(--fs-xs);
}

.pl-item.is-active .pl-item__title { color: var(--accent-700); }

/* — Switch — */

.switch {
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.switch input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.switch__track {
    position: relative;
    display: block;
    width: 38px;
    height: 21px;
    border-radius: var(--r-full);
    background: var(--ink-200);
    transition: background-color var(--t) ease;
}

.switch__thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--sh-1);
    transition: transform var(--t) var(--ease);
}

.switch input:checked + .switch__track { background: var(--accent); }
.switch input:checked + .switch__track .switch__thumb { transform: translateX(17px); }
.switch input:focus-visible + .switch__track { outline: 3px solid var(--accent); outline-offset: 2px; }

.switch__text {
    color: var(--ink-500);
    font-size: var(--fs-xs);
    font-weight: 500;
}


/* ═══ 10. DESPRE & PROCES ═════════════════════════════════ */

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5rem);
}

.about__text > p {
    margin-bottom: var(--s-4);
    color: var(--ink-500);
    font-size: var(--fs-lg);
    line-height: 1.8;
}

.about__list {
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
    margin: var(--s-8) 0;
}

.about__list li {
    position: relative;
    padding-left: 2.2rem;
}

.about__list li::before {
    position: absolute;
    top: .1rem;
    left: 0;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink-900);
    font-size: 12px;
    font-weight: 800;
    content: "✓";
}

.about__list strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ink-900);
    font-family: var(--font-display);
    font-size: var(--fs-base);
    font-weight: 600;
}

.about__list li {
    color: var(--ink-500);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.about__visual {
    position: relative;
    padding-bottom: 3.5rem;
    padding-left: 3rem;
}

.about__photo {
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--ink-100);
}

.about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}

.about__photo:hover img { transform: scale(1.05); }

.about__photo--main {
    aspect-ratio: 4 / 5;
    box-shadow: var(--sh-4);
}

.about__photo--sub {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46%;
    aspect-ratio: 1;
    border: 6px solid var(--ink-50);
    box-shadow: var(--sh-3);
}

.section--alt .about__photo--sub { border-color: var(--ink-50); }

.about__stamp {
    position: absolute;
    top: var(--s-6);
    right: calc(var(--s-6) * -1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--ink-900);
    text-align: center;
    box-shadow: var(--sh-accent);
}

.about__stamp-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.about__stamp-txt {
    margin-top: 2px;
    font-size: .64rem;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1.25;
    text-transform: uppercase;
}

/* — Proces — */

.process__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    counter-reset: step;
}

.process__step {
    position: relative;
    padding-top: var(--s-6);
    border-top: 2px solid var(--ink-200);
    transition: border-color var(--t) ease;
}

.process__step:hover { border-color: var(--accent); }

.process__num {
    display: block;
    margin-bottom: var(--s-3);
    color: var(--ink-200);
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    transition: color var(--t) ease;
}

.process__step:hover .process__num { color: var(--accent); }

.process__step h3 {
    margin-bottom: var(--s-3);
    font-size: var(--fs-h3);
}

.process__step p {
    color: var(--ink-500);
    font-size: var(--fs-sm);
    line-height: 1.7;
}


/* ═══ 11. PROIECTE / RECENZII / FAQ ═══════════════════════ */

.projects__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(.9rem, 1.8vw, 1.4rem);
}

.p-card {
    position: relative;
    grid-column: span 2;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--ink-200);
    box-shadow: var(--sh-2);
}

.p-card--wide {
    grid-column: span 3;
    aspect-ratio: 16 / 11;
}

.p-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease),
                filter var(--t) ease;
}

.p-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
                rgba(8, 11, 15, .88) 0%,
                rgba(8, 11, 15, .2) 46%,
                transparent 72%);
    content: "";
    transition: opacity var(--t) ease;
}

.p-card:hover img { transform: scale(1.07); }

.p-card__info {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: clamp(1.1rem, 2.4vw, 1.7rem);
    color: var(--white);
    transform: translateY(6px);
    transition: transform var(--t) var(--ease);
}

.p-card:hover .p-card__info { transform: none; }

.p-card__cat {
    display: inline-block;
    margin-bottom: var(--s-2);
    padding: .22rem .68rem;
    border-radius: var(--r-full);
    background: var(--accent);
    color: var(--ink-900);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.p-card__info h3 {
    margin-bottom: 2px;
    color: var(--white);
    font-size: var(--fs-h3);
}

.p-card__loc {
    color: rgba(255, 255, 255, .7);
    font-size: var(--fs-sm);
}

/* — Recenzii — */

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: clamp(1.2rem, 2.4vw, 2rem);
}

.r-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.6rem, 3vw, 2.2rem);
    border: 1px solid var(--ink-100);
    border-radius: var(--r-lg);
    background: var(--white);
    box-shadow: var(--sh-1);
    transition: transform var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
}

.r-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-3);
}

.r-card__stars {
    margin-bottom: var(--s-4);
    color: var(--accent);
    font-size: 1.05rem;
    letter-spacing: .14em;
}

.r-card blockquote {
    position: relative;
    flex-grow: 1;
    margin-bottom: var(--s-5);
}

.r-card blockquote::before {
    position: absolute;
    top: -1.8rem;
    left: -.4rem;
    color: var(--accent-soft);
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1;
    content: "\201C";
    pointer-events: none;
}

.r-card blockquote p {
    position: relative;
    color: var(--ink-600);
    font-size: var(--fs-base);
    line-height: 1.75;
}

.r-card figcaption {
    padding-top: var(--s-4);
    border-top: 1px solid var(--ink-100);
}

.r-card__name {
    display: block;
    color: var(--ink-900);
    font-family: var(--font-display);
    font-weight: 600;
}

.r-card__meta {
    display: block;
    color: var(--ink-400);
    font-size: var(--fs-xs);
}

/* — FAQ — */

.faq__list {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.faq__item {
    overflow: hidden;
    border: 1px solid var(--ink-100);
    border-radius: var(--r-md);
    background: var(--white);
    transition: border-color var(--t) ease,
                box-shadow var(--t) ease;
}

.faq__item[open] {
    border-color: var(--accent);
    box-shadow: var(--sh-2);
}

.faq__item summary {
    position: relative;
    padding: var(--s-5) 3.4rem var(--s-5) var(--s-5);
    color: var(--ink-900);
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    transition: color var(--t-fast) ease;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-700); }

.faq__item summary::after {
    position: absolute;
    top: 50%;
    right: var(--s-5);
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-700);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    content: "+";
    transform: translateY(-50%);
    transition: transform var(--t) var(--ease),
                background-color var(--t) ease;
}

.faq__item[open] summary::after {
    background: var(--accent);
    color: var(--ink-900);
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.faq__body {
    padding: 0 var(--s-5) var(--s-5);
    color: var(--ink-500);
    line-height: 1.75;
    animation: faqOpen var(--t) var(--ease);
}

@keyframes faqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}

.faq__body strong { color: var(--ink-800); }


/* ═══ 12. CONTACT & FORMULAR ══════════════════════════════ */

.contact::before {
    position: absolute;
    bottom: -140px;
    left: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-soft), transparent 68%);
    content: "";
    pointer-events: none;
}

.contact__layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 4.5rem);
}

.contact__big {
    display: block;
    margin-bottom: var(--s-8);
    padding-bottom: var(--s-6);
    border-bottom: 1px solid var(--ink-700);
}

.contact__big-label {
    display: block;
    margin-bottom: var(--s-1);
    color: var(--ink-400);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact__big-value {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -.02em;
    transition: color var(--t-fast) ease;
}

.contact__big:hover .contact__big-value { color: var(--white); }

.contact__rows {
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
    margin-bottom: var(--s-8);
}

.contact__rows li {
    display: flex;
    align-items: flex-start;
    gap: var(--s-4);
    color: var(--ink-300);
    font-size: var(--fs-sm);
    line-height: 1.6;
}

.contact__rows strong {
    display: block;
    margin-bottom: 2px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
}

.contact__rows a {
    overflow-wrap: anywhere;
    transition: color var(--t-fast) ease;
}

.contact__rows a:hover { color: var(--accent); }

.contact__ico {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: var(--r-sm);
    background: var(--accent-soft);
}

.contact__ico svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.contact__badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-2);
    margin-bottom: var(--s-8);
}

.contact__logo img {
    width: auto;
    height: 38px;
    opacity: .82;
}

/* — Formular — */

.quote-form {
    display: flex;
    flex-direction: column;
    gap: var(--s-5);
    padding: clamp(1.5rem, 3.4vw, 2.6rem);
    border: 1px solid var(--ink-700);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-4);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    min-width: 0;
}

.form-field label {
    color: var(--ink-200);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.form-field label span { color: var(--accent); }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: .85rem 1rem;
    border: 1px solid var(--ink-600);
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, .05);
    color: var(--white);
    font-size: var(--fs-sm);
    outline: none;
    transition: border-color var(--t-fast) ease,
                background-color var(--t-fast) ease,
                box-shadow var(--t-fast) ease;
}

.form-field select {
    appearance: none;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239AA4B2' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .85rem center;
    background-size: 17px;
    padding-right: 2.6rem;
    cursor: pointer;
}

.form-field select option {
    background: var(--ink-800);
    color: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-500); }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .14);
}

.form-error {
    display: none;
    color: #FCA5A5;
    font-size: var(--fs-xs);
}

.form-field.has-error .form-error,
.form-error.is-shown { display: block; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
    color: var(--ink-300);
    font-size: var(--fs-sm);
    line-height: 1.55;
    cursor: pointer;
}

.form-check input {
    width: 19px;
    height: 19px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent);
    cursor: pointer;
}

.form-check span span { color: var(--accent); }

.form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-note {
    color: var(--ink-500);
    font-size: var(--fs-xs);
    line-height: 1.5;
}

.form-status {
    display: none;
    padding: var(--s-3) var(--s-4);
    border-radius: var(--r-sm);
    font-size: var(--fs-sm);
    font-weight: 500;
}

.form-status.is-success {
    display: block;
    border: 1px solid rgba(22, 163, 74, .4);
    background: rgba(22, 163, 74, .14);
    color: #86EFAC;
}

.form-status.is-error {
    display: block;
    border: 1px solid rgba(220, 38, 38, .4);
    background: rgba(220, 38, 38, .14);
    color: #FCA5A5;
}

/* — Mascotă flotantă — */

.mascot-float {
    position: fixed;
    left: clamp(1rem, 3vw, 1.8rem);
    bottom: clamp(1rem, 3vw, 1.8rem);
    z-index: 88;
    display: flex;
    align-items: flex-end;
    gap: var(--s-2);
    opacity: 0;
    transform: translateY(20px) scale(.9);
    transition: opacity var(--t-slow) var(--ease),
                transform var(--t-slow) var(--ease);
}

.mascot-float.is-shown {
    opacity: 1;
    transform: none;
}

.mascot-float__char {
    position: relative;
    width: clamp(72px, 9vw, 96px);
    padding: 0;
    flex-shrink: 0;
    animation: mascotFloat 4.5s var(--ease-in-out) infinite;
    transition: transform var(--t) var(--ease);
}

.mascot-float__char img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 14px rgba(8, 11, 15, .28));
}

.mascot-float__char:hover { transform: scale(1.07) rotate(-3deg); }

/* Bula de dialog */
.mascot-float__bubble {
    position: relative;
    max-width: 210px;
    margin-bottom: 1.6rem;
    padding: var(--s-4) var(--s-5);
    border: 1px solid var(--ink-100);
    border-radius: var(--r-md) var(--r-md) var(--r-md) 4px;
    background: var(--white);
    box-shadow: var(--sh-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px) scale(.94);
    transform-origin: bottom left;
    transition: opacity var(--t) var(--ease),
                visibility var(--t),
                transform var(--t) var(--ease);
}

.mascot-float__bubble.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* Codița bulei */
.mascot-float__bubble::after {
    position: absolute;
    right: -7px;
    bottom: 14px;
    width: 14px;
    height: 14px;
    border-right: 1px solid var(--ink-100);
    border-bottom: 1px solid var(--ink-100);
    background: var(--white);
    content: "";
    transform: rotate(-45deg);
}

.mascot-float__bubble p {
    margin-bottom: var(--s-3);
    color: var(--ink-800);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 1.45;
}

.mascot-float__cta {
    display: inline-block;
    padding: .42rem 1rem;
    border-radius: var(--r-full);
    background: var(--accent);
    color: var(--ink-900);
    font-size: var(--fs-xs);
    font-weight: 700;
    transition: background-color var(--t) ease;
}

.mascot-float__cta:hover { background: var(--accent-300); }

.mascot-float[hidden] {
    display: none !important;
}

/* Buton de închidere */
.mascot-float__close {
    position: absolute;
    top: -6px;
    right: -6px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid var(--ink-200);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1;
    box-shadow: var(--sh-1);
    opacity: 0;
    transition: opacity var(--t) ease, background-color var(--t) ease;
}

.mascot-float:hover .mascot-float__close,
.mascot-float:focus-within .mascot-float__close { opacity: 1; }

.mascot-float__close:hover {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

@media (max-width: 640px) {
    .mascot-float { left: var(--s-3); bottom: var(--s-3); }
    .mascot-float__char { width: 62px; }
    .mascot-float__bubble { max-width: 165px; padding: var(--s-3) var(--s-4); }
}

/* Sub 380px se ascunde — nu mai e loc */
@media (max-width: 379px) {
    .mascot-float { display: none; }
}

/* ═══ 13. FOOTER & FLOTANTE ═══════════════════════════════ */

.site-footer {
    background: var(--ink-950);
    color: var(--ink-400);
    font-size: var(--fs-sm);
}

.footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
    padding-block: clamp(3rem, 6vw, 4.5rem);
}

.footer__brand img {
    width: auto;
    height: 44px;
    margin-bottom: var(--s-5);
}

.footer__brand p {
    max-width: 38ch;
    color: var(--ink-400);
    line-height: 1.7;
}

.footer__col h3 {
    margin-bottom: var(--s-4);
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}

.footer__col a {
    position: relative;
    transition: color var(--t-fast) ease,
                padding-left var(--t-fast) ease;
}

.footer__col a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer__contact li { line-height: 1.6; }

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--s-3);
    padding-block: var(--s-5);
    border-top: 1px solid var(--ink-800);
    color: var(--ink-500);
    font-size: var(--fs-xs);
}

.footer__legal a { transition: color var(--t-fast) ease; }
.footer__legal a:hover { color: var(--accent); }

/* — Butoane flotante — */

.fab {
    position: fixed;
    right: clamp(1rem, 3vw, 1.8rem);
    bottom: clamp(1rem, 3vw, 1.8rem);
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: var(--s-2);
    padding: .85rem 1.3rem;
    border-radius: var(--r-full);
    background: var(--accent);
    color: var(--ink-900);
    font-size: var(--fs-sm);
    font-weight: 600;
    box-shadow: var(--sh-accent);
    transition: transform var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
}

.fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 38px rgba(232, 163, 61, .45);
}

.fab svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.to-top {
    position: fixed;
    right: clamp(1rem, 3vw, 1.8rem);
    bottom: clamp(4.6rem, 8vw, 5.6rem);
    z-index: 89;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ink-200);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink-800);
    box-shadow: var(--sh-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--t) ease,
                visibility var(--t),
                transform var(--t) var(--ease),
                background-color var(--t) ease;
}

.to-top.is-shown {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.to-top:hover {
    background: var(--ink-900);
    color: var(--white);
    border-color: var(--ink-900);
}

.to-top svg { width: 19px; height: 19px; }


/* ═══ 14. GALERIE ═════════════════════════════════════════ */

.gallery-page {
    min-height: 100vh;
    padding: calc(var(--topbar-h) + var(--header-h) + 4.5rem)
             var(--gutter) 6rem;
    background: var(--paper);
}

.gallery-intro {
    width: min(100%, var(--container));
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.gallery-intro .section-label::before { display: none; }

.gallery-intro h1 {
    margin-bottom: var(--s-4);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.gallery-intro p {
    max-width: 58ch;
    margin-inline: auto;
    color: var(--ink-500);
    font-size: var(--fs-lg);
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--s-2);
    width: min(100%, var(--container));
    margin: 0 auto var(--s-6);
    color: var(--ink-500);
    font-size: var(--fs-sm);
}

.gallery-view-button {
    padding: .5rem 1.05rem;
    border: 1px solid var(--ink-200);
    border-radius: var(--r-full);
    background: var(--white);
    color: var(--ink-800);
    font-size: var(--fs-sm);
    font-weight: 500;
    transition: all var(--t) var(--ease);
}

.gallery-view-button:hover {
    border-color: var(--ink-900);
}

.gallery-view-button.is-active {
    border-color: var(--ink-900);
    background: var(--ink-900);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.7rem, 1.6vw, 1.1rem);
    width: min(100%, var(--container));
    margin-inline: auto;
}

.gallery-grid--one-column { grid-template-columns: 1fr; }

.gallery-item {
    position: relative;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--r-md);
    background: var(--ink-200);
    box-shadow: var(--sh-2);
    transition: transform var(--t) var(--ease),
                box-shadow var(--t) var(--ease);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-4);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease),
                filter var(--t) ease;
}

.gallery-item:hover img {
    filter: brightness(.82);
    transform: scale(1.05);
}

.gallery-video-item video {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: var(--ink-950);
    object-fit: cover;
    cursor: zoom-in;
}

.gallery-video-item::after {
    position: absolute;
    top: var(--s-3);
    right: var(--s-3);
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(8, 11, 15, .62);
    color: var(--white);
    font-size: 12px;
    content: "▶";
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    pointer-events: none;
}

.gallery-item figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.6rem 1rem .9rem;
    background: linear-gradient(to top, rgba(8, 11, 15, .88), transparent);
    color: var(--white);
    font-size: var(--fs-sm);
    font-weight: 600;
    transform: translateY(100%);
    transition: transform var(--t) var(--ease);
}

.gallery-item:hover figcaption { transform: none; }

.gallery-status {
    grid-column: 1 / -1;
    padding: var(--s-16) var(--s-4);
    color: var(--ink-400);
    text-align: center;
}

/* — Modal video — */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--s-4);
    background: rgba(8, 11, 15, .94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.video-modal.is-visible {
    display: flex;
    animation: fadeIn var(--t) var(--ease);
}

.pl-item.is-broken {
    opacity: .4;
    pointer-events: none;
    text-decoration: line-through;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

body.modal-open { overflow: hidden; }

.video-modal video {
    width: min(92vw, 430px);
    height: min(86svh, 760px);
    aspect-ratio: 9 / 16;
    border-radius: var(--r-md);
    background: #000;
    object-fit: contain;
    box-shadow: var(--sh-4);
}

.video-modal-close {
    position: absolute;
    top: var(--s-4);
    right: var(--s-4);
    z-index: 2;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: var(--white);
    font-size: 1.7rem;
    line-height: 1;
    transition: background-color var(--t) ease,
                transform var(--t) var(--ease);
}

.video-modal-close:hover {
    background: var(--accent);
    color: var(--ink-900);
    transform: rotate(90deg);
}


/* ═══ 15. RESPONSIVE ══════════════════════════════════════ */

/* — Laptop mic — */
@media (max-width: 1080px) {
    .showcase__layout   { grid-template-columns: 1fr; }
    .playlist__items    { max-height: 340px; }
    .about__stamp       { right: 0; }
    .footer__top        { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer__brand      { grid-column: 1 / -1; }
}

/* — Tabletă: meniu hamburger — */
@media (max-width: 900px) {
    .topbar__item:not(.topbar__item--link):first-child,
    .topbar__sep:first-of-type { display: none; }

    .nav-toggle { display: flex; }

    .site-header { background: rgba(14, 17, 22, .82); backdrop-filter: blur(12px); }

    .main-nav {
        position: fixed;
        inset: calc(var(--topbar-h) + var(--header-h)) 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        padding-inline: var(--gutter);
        overflow: hidden;
        background: var(--ink-900);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
        transition: max-height var(--t-slow) var(--ease),
                    padding var(--t) var(--ease);
    }

    body.is-scrolled .main-nav { inset-block-start: var(--header-h); }

    .main-nav.is-open {
        max-height: 80svh;
        padding-block: var(--s-4) var(--s-6);
        overflow-y: auto;
    }

    .main-nav a {
        padding: var(--s-4) 0;
        border-bottom: 1px solid var(--ink-800);
        font-size: var(--fs-lg);
    }

    .main-nav a::after { display: none; }

    .main-nav__cta {
        margin: var(--s-4) 0 0;
        padding: var(--s-4) !important;
        border-bottom: 0;
        text-align: center;
    }

    .trust__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .about__grid { grid-template-columns: 1fr; }

    .about__visual {
        width: min(100%, 480px);
        margin-inline: auto;
        padding-left: 2rem;
    }

    .contact__layout { grid-template-columns: 1fr; }

    .p-card,
    .p-card--wide { grid-column: span 3; aspect-ratio: 4 / 3; }

    .gallery-grid:not(.gallery-grid--one-column) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item figcaption { transform: none; }

    .player__bar { opacity: 1; transform: none; }
}

/* — Mobil — */
@media (max-width: 640px) {
    :root {
        --topbar-h: 36px;
        --header-h: 64px;
    }

    .topbar__inner { justify-content: center; }

    .topbar__item:not(.topbar__item--link),
    .topbar__sep { display: none; }

    .topbar__item--link:last-of-type,
    .topbar__sep { display: none; }

    .hero { min-height: 92svh; }
    .hero__actions .btn { width: 100%; }

    .hero__points {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--s-2);
        text-align: left;
    }

    .hero__scroll { display: none; }

    .trust { margin-top: -2rem; }

    .trust__item { padding-inline: var(--s-2); }

    .services__cta { flex-direction: column; }
    .services__cta .btn { width: 100%; }

    .ba-grid { grid-template-columns: 1fr; }
    .ba { aspect-ratio: 1; }

    .about__visual { padding-left: 0; padding-bottom: 5rem; }

    .about__photo--sub {
        position: relative;
        width: 100%;
        margin-top: var(--s-4);
        aspect-ratio: 16 / 10;
        border: 0;
    }

    .about__stamp {
        top: auto;
        right: var(--s-4);
        bottom: 1rem;
        width: 88px;
        height: 88px;
    }

    .p-card,
    .p-card--wide { grid-column: 1 / -1; }

    .form-row { grid-template-columns: 1fr; }

    .footer__top { grid-template-columns: 1fr; }
    .footer__bottom { justify-content: center; text-align: center; }

    .fab__text { display: none; }

    .fab {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
    }

    .fab svg { width: 23px; height: 23px; }

    .to-top { bottom: 5.4rem; }

    .gallery-grid:not(.gallery-grid--one-column) { gap: .55rem; }

    .gallery-grid:not(.gallery-grid--one-column) .gallery-item img,
    .gallery-grid:not(.gallery-grid--one-column) .gallery-video-item video {
        aspect-ratio: 1;
        object-fit: cover;
    }

    .gallery-grid:not(.gallery-grid--one-column) figcaption { display: none; }

    .gallery-grid--one-column .gallery-item img { aspect-ratio: 16 / 10; }

    .gallery-grid--one-column .gallery-video-item {
        width: min(100%, 360px);
        justify-self: center;
    }

    .gallery-grid--one-column .gallery-video-item video {
        aspect-ratio: 9 / 16;
        object-fit: contain;
    }
}


/* ═══ ACCESIBILITATE & PRINT ══════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .has-js [data-reveal] { opacity: 1; transform: none; }
    .hero__media img { animation: none; transform: none; }
}

@media (prefers-contrast: more) {
    :root { --ink-500: #3A4453; --ink-400: #4A5566; }
    .s-card, .r-card, .faq__item { border-color: var(--ink-400); }
}

@media print {
    .topbar, .site-header, .fab, .to-top,
    .hero__scroll, .player, .playlist,
    .video-modal, .ba-filters { display: none !important; }

    body { background: #fff; color: #000; }
    .section { padding-block: 1.5rem; }
    .section--dark { background: #fff !important; color: #000 !important; }
    .section--dark h2, .section--dark h3 { color: #000 !important; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
