:root {
    /* Brand */
    --w2-green: #22c55e;
    --w2-green2: #16a34a;

    /* Ink */
    --w2-black: #0b0f14;

    /* Light scheme */
    --w2-bg: #ffffff;

    /* Lines + shadows */
    --w2-stroke: rgba(11, 15, 20, .10);
    --w2-stroke2: rgba(11, 15, 20, .14);
    --w2-shadow: 0 18px 60px rgba(11, 15, 20, .10);
    --w2-shadow2: 0 10px 30px rgba(11, 15, 20, .08);

    /* Type */
    --w2-text: rgba(11, 15, 20, .92);
    --w2-muted: rgba(11, 15, 20, .62);
    --w2-faint: rgba(11, 15, 20, .46);

    /* Geometry */
    --w2-radius: 22px;
    --w2-pill: 999px;

    /* Layout */
    --w2-max: 1420px;

    /* Dock */
    --w2-dock-h: 72px;


    /* surfaces */
    --w2-surface: #ffffff;
    --w2-surface-soft: #f6f7f8;
    /* dacă ai nevoie */

    /* borders */
    --w2-border-soft: rgba(11, 15, 20, .08);
    --w2-border-strong: rgba(11, 15, 20, .12);

    /* shadows — sistem coerent */
    --w2-shadow-sm:
        0 6px 18px rgba(11, 15, 20, .04),
        0 1px 2px rgba(11, 15, 20, .04);

    --w2-shadow-md:
        0 18px 44px rgba(11, 15, 20, .06),
        0 2px 6px rgba(11, 15, 20, .04);

    --w2-shadow-lg:
        0 40px 90px rgba(11, 15, 20, .08),
        0 6px 18px rgba(11, 15, 20, .05);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.w2-body {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color: var(--w2-text);
    background: var(--w2-bg);
    overflow-x: hidden;

    /* rezervă spațiu pentru dock */
    padding-bottom: calc(var(--w2-dock-h) + 26px);
}

/* container helper */
.w2-main .w2-container {
    max-width: var(--w2-max);
}

/* ===== BACKGROUND (clean, Bonsai-ish) ===== */
.w2-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.w2-bg .w2-bg-grid {
    position: absolute;
    inset: 0;
    opacity: .14;
    background-image:
        linear-gradient(rgba(11, 15, 20, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 15, 20, .06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(1100px 700px at 40% 0%, #000 35%, transparent 72%);
}

.w2-bg .w2-bg-glow {
    position: absolute;
    inset: -260px;
    filter: blur(50px);
    opacity: .70;
    background:
        radial-gradient(560px 560px at 24% 16%, rgba(34, 197, 94, .14), transparent 64%),
        radial-gradient(520px 520px at 82% 12%, rgba(34, 197, 94, .10), transparent 68%),
        radial-gradient(720px 720px at 54% 72%, rgba(34, 197, 94, .06), transparent 70%);
}

.w2-bg .w2-bg-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 760px at 50% 0%, rgba(255, 255, 255, 0), rgba(255, 255, 255, .86) 78%, rgba(255, 255, 255, 1) 100%);
}

/* layer order */
.w2-main,
.w2-dock {
    position: relative;
    z-index: 1;
}

/* ===== MAIN STAGE (gol pentru moment) ===== 64px */
.w2-main .w2-stage {
    min-height: 70vh;
    padding: 0px 0 60px;
}

/* placeholder temporar */
.w2-stage .w2-placeholder {
    max-width: 560px;
    border-radius: var(--w2-radius);
    border: 1px solid var(--w2-stroke);
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--w2-shadow2);
    padding: 18px;
}

.w2-placeholder .w2-placeholder-title {
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--w2-black);
}

.w2-placeholder .w2-placeholder-text {
    margin-top: 8px;
    color: var(--w2-muted);
    line-height: 1.7;
}


/* ===== DOCK v3 — Apple/Tesla minimal glass ===== */

/* =========================
   DOCK — BLACK PURE (AUTO WIDTH)
   centered groups + hover scale
   ========================= */

.w2-dock {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 60;
    pointer-events: none;
}

/* =========================
   BAR — width by content
   ========================= */

.w2-dock .w2-dock-bar {
    pointer-events: auto;
    position: relative;

    height: 64px;
    padding: 10px 18px;
    border-radius: 999px;

    /* 🔥 width follows content */
    display: inline-grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    column-gap: 22px;

    /* ❗ PURE BLACK */
    background: #050505;
    border: 1px solid rgba(255, 255, 255, .10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .55),
        0 10px 30px rgba(0, 0, 0, .35),
        0 1px 0 rgba(255, 255, 255, .04) inset;
}

/* subtle inner ring */
.w2-dock .w2-dock-bar::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 999px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .08);
    opacity: .8;
}

/* subtle green rail */
.w2-dock .w2-dock-bar::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    pointer-events: none;

    background: linear-gradient(90deg,
            transparent,
            rgba(34, 197, 94, .35),
            rgba(34, 197, 94, .12),
            rgba(34, 197, 94, .35),
            transparent);

    opacity: .7;
}

/* =========================
   GROUPS — tight & centered
   ========================= */

.w2-dock-bar .w2-dock-group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.w2-dock-bar .w2-dock-left {
    justify-content: center;
}

.w2-dock-bar .w2-dock-right {
    justify-content: center;
}

/* =========================
   LINKS — grow on hover
   ========================= */

.w2-dock-group .w2-dock-link {
    text-decoration: none;
    color: rgba(255, 255, 255, .78);

    font-weight: 850;
    font-size: 14px;
    letter-spacing: -0.02em;
    line-height: 1;

    padding: 10px 10px;
    border-radius: 999px;

    transform: translateZ(0);
    transition:
        transform .16s ease,
        color .16s ease,
        background .16s ease,
        box-shadow .16s ease;
}

/* hover grow */
.w2-dock-group .w2-dock-link:hover {
    transform: scale(1.10);
    color: rgba(255, 255, 255, .96);
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

/* active */
.w2-dock-group .w2-dock-link.w2-is-active {
    color: rgba(255, 255, 255, .96);
    background: rgba(255, 255, 255, .08);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .32),
        0 0 0 1px rgba(34, 197, 94, .18) inset;
}

/* CTA */
.w2-dock-group .w2-dock-link-cta {
    color: rgba(255, 255, 255, .96);
    background: rgba(34, 197, 94, .16);
    box-shadow:
        0 12px 30px rgba(34, 197, 94, .18),
        0 0 0 1px rgba(34, 197, 94, .22) inset;
}

.w2-dock-group .w2-dock-link-cta:hover {
    transform: scale(1.14);
    background: rgba(34, 197, 94, .22);
}

/* =========================
   CENTER LOGO — premium grow
   ========================= */

.w2-dock-bar .w2-dock-home {
    width: 46px;
    height: 46px;
    border-radius: 999px;

    display: grid;
    place-items: center;
    text-decoration: none;

    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .12);

    box-shadow:
        0 22px 60px rgba(0, 0, 0, .55),
        0 0 0 4px rgba(34, 197, 94, .10);

    transform: translateZ(0);
    transition: transform .16s ease, box-shadow .16s ease;
}

/* logo hover */
.w2-dock-bar .w2-dock-home:hover {
    transform: scale(1.18);
    box-shadow:
        0 28px 80px rgba(0, 0, 0, .65),
        0 0 0 6px rgba(34, 197, 94, .16);
}

.w2-dock-home .w2-dock-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 560px) {
    .w2-dock {
        bottom: 14px;
    }

    .w2-dock .w2-dock-bar {
        height: 60px;
        padding: 10px 14px;
        column-gap: 16px;
    }

    .w2-dock-bar .w2-dock-group {
        gap: 12px;
    }

    .w2-dock-group .w2-dock-link {
        font-size: 13px;
        padding: 10px 8px;
    }

    .w2-dock-bar .w2-dock-home {
        width: 44px;
        height: 44px;
    }

    .w2-dock-home .w2-dock-logo {
        width: 26px;
        height: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .w2-dock-group .w2-dock-link,
    .w2-dock-bar .w2-dock-home {
        transition: none;
    }
}

/* =========================
   DOCK — vertical balance fix
   ========================= */

/* bar: centrare reală */
.w2-dock .w2-dock-bar {
    padding: 0 18px;
    /* scoatem padding vertical */
    height: 64px;
    align-items: center;
}

/* grupuri: ocupă toată înălțimea */
.w2-dock-bar .w2-dock-group {
    height: 100%;
    display: flex;
    align-items: center;
    /* centrare perfectă */
}

/* linkuri: centrare reală */
.w2-dock-group .w2-dock-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 40px;
    /* 👈 cheia echilibrului */
    padding: 0 12px;
    /* fără padding vertical */
    line-height: 1;
}

/* logo container centrat optic */
.w2-dock-bar .w2-dock-home {
    display: grid;
    place-items: center;
}

/* mic micro-fix optic */
.w2-dock-home .w2-dock-logo {
    transform: translateY(0.5px);
}


/* =========================
   DOCK — language switcher
   ========================= */

.w2-dock-bar .w2-dock-lang {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    height: 40px;
    padding: 0 6px;

    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

.w2-dock-lang .w2-dock-lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 28px;
    padding: 0 10px;

    text-decoration: none;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: -0.01em;

    color: rgba(255, 255, 255, .72);
    border-radius: 999px;

    transition: transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.w2-dock-lang .w2-dock-lang-btn:hover {
    transform: scale(1.06);
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .06);
}

.w2-dock-lang .w2-dock-lang-btn.w2-is-lang-active {
    color: rgba(255, 255, 255, .96);
    background: rgba(34, 197, 94, .16);
    box-shadow: 0 0 0 1px rgba(34, 197, 94, .22) inset;
}

.w2-dock-lang .w2-dock-lang-btn.w2-is-lang-disabled {
    opacity: .45;
    cursor: default;
    pointer-events: none;
}



/* =========================
   DOCK — MOBILE SWIPE (PATCH)
   IMPORTANT: pune-l ultimul
   ========================= */
@media (max-width: 560px){

  /* 1) dock-ul devine full-width ca să putem limita bara */
  .w2-dock{
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 10px; /* margine față de ecran */
  }

  /* 2) bara primește width fix (viewport), nu content-width */
  .w2-dock .w2-dock-bar{
    width: min(100%, calc(100vw - 20px)); /* cheie: CONSTRAIN */
    max-width: 520px;                    /* optional, arată premium */
    overflow-x: auto;
    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;

    /* snap */
    scroll-snap-type: x mandatory;
    scroll-padding: 18px;

    /* layout pentru swipe */
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;

    /* ascunde scrollbar */
    scrollbar-width: none;
  }

  .w2-dock .w2-dock-bar::-webkit-scrollbar{
    width: 0;
    height: 0;
  }

  /* 3) nu lăsa elementele să se strângă */
  .w2-dock-bar .w2-dock-group,
  .w2-dock-bar .w2-dock-home,
  .w2-dock-bar .w2-dock-lang{
    flex: 0 0 auto;
  }

  /* 4) snap pe items */
  .w2-dock-group .w2-dock-link,
  .w2-dock-bar .w2-dock-home,
  .w2-dock-bar .w2-dock-lang{
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* 5) pe touch: press feedback, nu hover */
  .w2-dock-group .w2-dock-link:hover,
  .w2-dock-bar .w2-dock-home:hover{
    transform: none;
  }

  .w2-dock-group .w2-dock-link:active{
    transform: scale(.97);
  }

  .w2-dock-bar .w2-dock-home:active{
    transform: scale(.96);
  }
}




/* =========================
   HERO — wrap + shadow minimalist 3.0 (FULL)
   ========================= */

.w2-hero {
    position: relative;
    padding: 0px 0 120px;
}

/* containerul “premium object” */
.w2-hero .w2-hero-wrap {
    background: #ffffff;
    border: none;
    /* fără border */
    border-radius: 0;
    /* pătrat */
    padding: 40px 0;
    /* padding vertical în container; orizontal e în copy */
    overflow: hidden;
    /* ca imaginea să fie “tăiată” perfect */

    /* Minimalism 3.0 shadow — super curat */
    box-shadow:
        0 1px 0 rgba(11, 15, 20, .04),
        0 14px 34px rgba(11, 15, 20, .06),
        0 60px 140px rgba(11, 15, 20, .04);
}

/* grid intern */
.w2-hero .w2-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
    align-items: stretch;
    gap: 60px;
}

/* LEFT */
.w2-hero .w2-hero-copy {
    padding-left: 4vw;
    /* aer editorial */
    padding-right: 10px;
    max-width: 640px;
}

.w2-hero .w2-hero-brandline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.w2-hero .w2-hero-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.w2-hero .w2-hero-brandtext {
    font-weight: 700;
    letter-spacing: -0.01em;
    color: rgba(11, 15, 20, .55);
}

.w2-hero .w2-hero-title {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.02;
    font-size: clamp(40px, 4.6vw, 68px);
    color: #0b0f14;
}

.w2-hero .w2-hero-mark {
    background: linear-gradient(180deg,
            rgba(34, 197, 94, 0) 55%,
            rgba(34, 197, 94, .22) 55%,
            rgba(34, 197, 94, .22) 92%,
            rgba(34, 197, 94, 0) 92%);

    padding: 0 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}


.w2-hero .w2-hero-lead {
    margin-top: 18px;
    max-width: 58ch;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(11, 15, 20, .62);
}

.w2-hero .w2-hero-actions {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.w2-hero .w2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    height: 44px;
    padding: 0 16px;

    font-weight: 900;
    letter-spacing: -0.01em;
    border-radius: 10px;

    border: 1px solid rgba(11, 15, 20, .14);
    transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}

.w2-hero .w2-btn:hover {
    transform: translateY(-1px);
}

.w2-hero .w2-btn-primary {
    background: #22c55e;
    border-color: rgba(34, 197, 94, .35);
    color: rgba(11, 15, 20, .92);
    box-shadow: 0 16px 40px rgba(34, 197, 94, .16);
}

.w2-hero .w2-btn-primary:hover {
    background: #16a34a;
}

.w2-hero .w2-btn-ghost {
    background: transparent;
    color: rgba(11, 15, 20, .86);
}

.w2-hero .w2-btn-ghost:hover {
    background: rgba(11, 15, 20, .04);
    border-color: rgba(11, 15, 20, .18);
}

.w2-hero .w2-hero-note {
    margin-top: 14px;
    font-weight: 600;
    color: rgba(11, 15, 20, .46);
}

/* =========================
   HERO VISUAL — cinematic bg
   ========================= */

.w2-hero .w2-hero-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    isolation: isolate;
}

/* imagine layer */
.w2-hero .w2-hero-image {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 70%,
            rgba(255, 255, 255, .06) 100%),
        url("../img/section-image-1.avif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.04);
    transition: transform 1.2s cubic-bezier(.22, .61, .36, 1);

    /* depth */
    box-shadow: -40px 0 80px rgba(11, 15, 20, .10);
}

/* 🔥 slow cinematic breathing */
@keyframes w2-hero-breathe {
    0% {
        transform: scale(1.04);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.04);
    }
}

.w2-hero .w2-hero-image {
    animation: w2-hero-breathe 18s ease-in-out infinite;
}

/* 🧠 hover parallax (desktop only feel) */
.w2-hero .w2-hero-visual:hover .w2-hero-image {
    transform: scale(1.12);
}

/* =========================
   subtle green tech glow
   ========================= */

.w2-hero .w2-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(600px 300px at 80% 20%,
            rgba(34, 197, 94, .18),
            transparent 60%);

    mix-blend-mode: normal;
    opacity: .6;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px) {

    .w2-hero .w2-hero-visual {
        min-height: 360px;
    }

    .w2-hero .w2-hero-image {
        animation: none;
        /* pe mobile evităm heavy motion */
        transform: scale(1.02);
    }

    .w2-hero .w2-hero-visual:hover .w2-hero-image {
        transform: scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .w2-hero .w2-hero-image {
        animation: none;
        transform: scale(1.02);
    }
}


/* RESPONSIVE */
@media (max-width: 1100px) {
    .w2-hero {
        padding: 64px 0 86px;
    }

    .w2-hero .w2-hero-wrap {
        padding: 28px 0;
    }

    .w2-hero .w2-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .w2-hero .w2-hero-copy {
        padding-left: 0;
        padding-right: 0;
        margin: 0 28px;
    }
}



/* =========================
   FOOTER — Essential Pro
   (no tags, no fluff)
   ========================= */

.w2-footer {
    background: #ffffff;
    margin-top: 0px;
    border-top: 1px solid rgba(11, 15, 20, .08);
    z-index: 1;
    position: relative;
}

.w2-footer .w2-footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 28px 26px;
}

/* top layout */
.w2-footer .w2-footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 48px;
    align-items: start;
}

/* brand */
.w2-footer-top .w2-footer-brandline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.w2-footer-brandline .w2-footer-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.w2-footer-brandline .w2-footer-name {
    font-size: 18px;
    font-weight: 600;
    /* ✅ big companies vibe */
    letter-spacing: -0.01em;
    color: #0b0f14;
}

.w2-footer-top .w2-footer-desc {
    margin-top: 14px;
    color: #000;
    line-height: 1.7;
    max-width: 52ch;
    font-weight: 400;
}

/* columns */
.w2-footer-top .w2-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.w2-footer-cols .w2-footer-title {
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0b0f14;
    margin-bottom: 10px;
}

.w2-footer-col .w2-footer-link {
    display: block;
    text-decoration: none;
    color: rgb(11, 15, 20);
    padding: 7px 0;
    font-weight: 450;
    transition: color .16s ease, transform .16s ease;
}

.w2-footer-col .w2-footer-link:hover {
    color: #0b0f14;
    transform: translateX(2px);
}

/* contact links */
.w2-footer-col .w2-footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: rgba(11, 15, 20, .64);
    padding: 7px 0;

    font-weight: 450;
    transition: color .16s ease, transform .16s ease;
}

.w2-footer-contact i {
    width: 16px;
    text-align: center;
    opacity: .85;
}

.w2-footer-col .w2-footer-contact:hover {
    color: #0b0f14;
    transform: translateX(2px);
}

.w2-footer-col .w2-footer-wa {
    color: rgba(34, 197, 94, .85);
}

.w2-footer-col .w2-footer-wa:hover {
    color: rgba(22, 163, 74, .95);
}

/* bottom row */
.w2-footer .w2-footer-bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(11, 15, 20, .06);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.w2-footer-bottom .w2-footer-copy {
    color: rgba(11, 15, 20, .52);
    font-size: 14px;
    font-weight: 450;
}

.w2-footer-bottom .w2-footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.w2-footer-legal .w2-footer-legal-link {
    text-decoration: none;
    color: rgba(11, 15, 20, .55);
    font-weight: 450;
    transition: color .16s ease;
}

.w2-footer-legal .w2-footer-legal-link:hover {
    color: #0b0f14;
}

.w2-footer-legal .w2-footer-sep {
    color: rgba(11, 15, 20, .35);
}

/* social */
.w2-footer-bottom .w2-footer-social {
    display: flex;
    gap: 10px;
}

.w2-footer-social .w2-footer-sociallink {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    text-decoration: none;

    color: rgba(11, 15, 20, .62);
    border: 1px solid rgba(11, 15, 20, .10);
    background: rgba(11, 15, 20, .03);

    transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}

.w2-footer-social .w2-footer-sociallink:hover {
    transform: translateY(-1px);
    color: #0b0f14;
    background: #ffffff;
    border-color: rgba(11, 15, 20, .14);
}

/* responsive */
@media (max-width: 980px) {
    .w2-footer .w2-footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .w2-footer-top .w2-footer-cols {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}




/* =========================
   BUILD SECTION — PRO (ALL UPGRADES)
   - green hover accent
   - magnetic feel (no JS)
   - scroll reveal (CSS view-timeline) + fallback
   - premium dividers
   - square, clean, no fluff
   ========================= */

.w2-build {
    margin-top: 60px;
    position: relative;
}

/* premium divider above section */
.w2-build::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -56px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(11, 15, 20, .10),
            transparent);
}

/* subtle green signal line (very thin) */
.w2-build::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -56px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(34, 197, 94, .55),
            transparent);
    opacity: .55;
}

.w2-build .w2-build-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =========================
   HEAD
   ========================= */

.w2-build-wrap .w2-build-head {
    max-width: 760px;
}

.w2-build-head .w2-build-title {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #0b0f14;
    margin: 0;
}

.w2-build-head .w2-build-sub {
    margin: 14px 0 0;
    color: rgba(11, 15, 20, .64);
    line-height: 1.7;
    font-weight: 400;
}

/* =========================
   GRID
   ========================= */

.w2-build-wrap .w2-build-grid {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* =========================
   CARD — base
   ========================= */

.w2-build-grid .w2-build-card {
    position: relative;
    padding: 28px 26px;

    background: #ffffff;
   
  background: var(--w2-surface);
  box-shadow:var(--w2-shadow-sm);
   
    border-radius: 0;

    transform: translateZ(0);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease,
        background .18s ease;
}

/* green hairline accent (hidden until hover) */
.w2-build-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(34, 197, 94, .80),
            transparent);
    opacity: 0;
    transition: opacity .18s ease;
}

/* subtle green glow corner (very premium) */
.w2-build-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(520px 240px at 18% 10%,
            rgba(34, 197, 94, .10),
            transparent 60%);
    opacity: 0;
    transition: opacity .18s ease;
}

/* =========================
   CARD — hover (green + depth)
   ========================= */

.w2-build-grid .w2-build-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(11, 15, 20, .12);

    box-shadow:
        0 18px 44px rgba(11, 15, 20, .06),
        0 2px 6px rgba(11, 15, 20, .04);
}

.w2-build-grid .w2-build-card:hover::before {
    opacity: .85;
}

.w2-build-grid .w2-build-card:hover::after {
    opacity: 1;
}

/* “magnetic feel” safe: micro-tilt on hover for pointer devices */
@media (hover: hover) and (pointer: fine) {
    .w2-build-grid .w2-build-card:hover {
        transform: translateY(-3px) scale(1.01) rotateX(.35deg) rotateY(-.35deg);
    }
}

/* keyboard focus (pro) */
.w2-build-grid .w2-build-card:focus-within {
    border-color: rgba(34, 197, 94, .30);
    box-shadow:
        0 18px 44px rgba(11, 15, 20, .06),
        0 0 0 3px rgba(34, 197, 94, .14);
}

.w2-build-grid .w2-build-card:focus-within::before {
    opacity: .95;
}

/* =========================
   CARD TEXT
   ========================= */

.w2-build-card .w2-build-card-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0b0f14;
}

.w2-build-card .w2-build-card-text {
    margin: 10px 0 0;
    color: rgba(11, 15, 20, .64);
    line-height: 1.65;
    font-weight: 400;
}

/* =========================
   LIST
   ========================= */

.w2-build-card .w2-build-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.w2-build-list .w2-build-li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    color: rgba(11, 15, 20, .66);
    font-weight: 500;
}

.w2-build-li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: rgba(34, 197, 94, .75);
}

/* =========================
   SCROLL REVEAL — fallback (no JS)
   - default: subtle fade-in on load
   ========================= */

.w2-build-grid .w2-build-card {
    opacity: 0;
    transform: translateY(10px);
    animation: w2-build-in .55s ease forwards;
}

.w2-build-grid .w2-build-card:nth-child(1) {
    animation-delay: .05s;
}

.w2-build-grid .w2-build-card:nth-child(2) {
    animation-delay: .12s;
}

.w2-build-grid .w2-build-card:nth-child(3) {
    animation-delay: .19s;
}

@keyframes w2-build-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   SCROLL REVEAL — best (CSS view-timeline)
   - if supported: reveals when enters viewport
   ========================= */

@supports (animation-timeline: view()) {
    .w2-build-grid .w2-build-card {
        animation: w2-build-view .7s ease both;
        animation-timeline: view();
        animation-range: entry 0% cover 28%;
        opacity: 1;
        /* view-timeline handles it */
        transform: none;
    }

    .w2-build-grid .w2-build-card:nth-child(1) {
        animation-delay: 0s;
    }

    .w2-build-grid .w2-build-card:nth-child(2) {
        animation-delay: .06s;
    }

    .w2-build-grid .w2-build-card:nth-child(3) {
        animation-delay: .12s;
    }

    @keyframes w2-build-view {
        from {
            opacity: 0;
            transform: translateY(14px);
        }

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

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
    .w2-build-grid .w2-build-card {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 980px) {
    .w2-build {
        margin-top: 90px;
    }

    .w2-build-wrap .w2-build-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}


/* =========================
   BUILD — Font Awesome icons (premium)
   ========================= */

.w2-build-card .w2-build-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* icon: small, crisp, monochrome */
.w2-build-card-title .w2-build-ico {
    width: 18px;
    text-align: center;
    font-size: 16px;

    color: rgba(11, 15, 20, .55);
    transform: translateY(0.5px);

    transition: color .18s ease, transform .18s ease;
}

/* on hover: icon gets slightly “alive” */
.w2-build-card:hover .w2-build-ico {
    color: rgba(34, 197, 94, .85);
    transform: translateY(0px);
}



/* =========================
   FOR FIRMS — wow black cards + gradient chips
   ========================= */

.w2-firms{
  margin-top: 120px;
  padding: 72px 0;
}

.w2-firms .w2-firms-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* head */
.w2-firms-wrap .w2-firms-head{
  
}

.w2-firms-head .w2-firms-title{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #0b0f14;
}

.w2-firms-head .w2-firms-sub{
  margin-top: 12px;
  color: rgba(11,15,20,.64);
  line-height: 1.7;
}

/* grid */
.w2-firms-wrap .w2-firms-grid{
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* card base */
.w2-firms-grid .w2-firms-card{
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 0;

  background: #050505;
  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 18px 44px rgba(0,0,0,.22),
    0 1px 0 rgba(255,255,255,.04) inset;

  overflow: hidden;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

/* inner glow (still black) */
.w2-firms-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(540px 240px at 18% 12%, rgba(34,197,94,.08), transparent 62%),
    radial-gradient(520px 240px at 90% 30%, rgba(255,255,255,.04), transparent 55%);
  opacity: .8;
}

.w2-firms-grid .w2-firms-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.12);
  box-shadow:
    0 26px 70px rgba(0,0,0,.30),
    0 1px 0 rgba(255,255,255,.05) inset;
}

/* title + text */
.w2-firms-card .w2-firms-card-title{
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(255,255,255,.94);
  max-width: 30ch;
  position: relative;
  z-index: 1;
}

.w2-firms-card .w2-firms-card-text{
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* =========================
   CHIPS — gradient, colorful, square-ish
   ========================= */

.w2-firms-card .w2-firms-chip{
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  height: 30px;
  padding: 0 12px;

  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;

  color: rgba(255,255,255,.92);

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);

  box-shadow:
    0 12px 30px rgba(0,0,0,.25),
    0 1px 0 rgba(255,255,255,.06) inset;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.w2-firms-card:hover .w2-firms-chip{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 16px 40px rgba(0,0,0,.30),
    0 1px 0 rgba(255,255,255,.06) inset;
}

/* chip icon */
.w2-firms-chip .w2-firms-ico{
  font-size: 13px;
  opacity: .95;
}

/* per-chip gradients (still on black) */
.w2-firms-chip.w2-firms-chip-claritate{
  background: linear-gradient(180deg, rgba(34,197,94,.22), rgba(255,255,255,.06));
  border-color: rgba(34,197,94,.22);
}

.w2-firms-chip.w2-firms-chip-viteza{
  background: linear-gradient(180deg, rgba(34,197,94,.18), rgba(255,255,255,.06));
  border-color: rgba(34,197,94,.18);
}

.w2-firms-chip.w2-firms-chip-control{
  background: linear-gradient(180deg, rgba(34,197,94,.16), rgba(255,255,255,.06));
  border-color: rgba(34,197,94,.16);
}

.w2-firms-chip.w2-firms-chip-platforma{
  background: linear-gradient(180deg, rgba(34,197,94,.20), rgba(255,255,255,.06));
  border-color: rgba(34,197,94,.20);
}

.w2-firms-chip.w2-firms-chip-integrare{
  background: linear-gradient(180deg, rgba(34,197,94,.24), rgba(255,255,255,.06));
  border-color: rgba(34,197,94,.24);
}

.w2-firms-chip.w2-firms-chip-cloud{
  background: linear-gradient(180deg, rgba(34,197,94,.14), rgba(255,255,255,.06));
  border-color: rgba(34,197,94,.14);
}

/* responsive */
@media (max-width: 980px){
  .w2-firms{
    margin-top: 90px;
    padding: 56px 0;
  }

  .w2-firms-wrap .w2-firms-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}



/* =========================
   404 — 2way clean premium
   ========================= */

.w2-404{
  padding: 90px 0 120px;
}

.w2-404 .w2-404-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.w2-404-wrap .w2-404-grid{
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* LEFT */
.w2-404-grid .w2-404-copy{
  padding-right: 10px;
}

.w2-404-copy .w2-404-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.w2-404-kicker .w2-404-code{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 10px;

  background: rgba(34,197,94,.14);
  color: rgba(11,15,20,.92);

  font-weight: 700;
  letter-spacing: -0.01em;
}

.w2-404-kicker .w2-404-kicker-text{
  color: rgba(11,15,20,.55);
  font-weight: 600;
}

.w2-404-copy .w2-404-title{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #0b0f14;
}

.w2-404-copy .w2-404-lead{
  margin-top: 14px;
  color: rgba(11,15,20,.64);
  line-height: 1.75;
  font-size: 18px;
  max-width: 62ch;
}

/* actions */
.w2-404-copy .w2-404-actions{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.w2-404-actions .w2-404-btn{
  height: 44px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;

  font-weight: 650;
  letter-spacing: -0.01em;

  border: 1px solid rgba(11,15,20,.14);
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}

.w2-404-actions .w2-404-btn:hover{
  transform: translateY(-1px);
}

.w2-404-actions .w2-404-btn-primary{
  background: #22c55e;
  border-color: rgba(34,197,94,.30);
  color: rgba(11,15,20,.92);
  box-shadow: 0 16px 40px rgba(34,197,94,.14);
}

.w2-404-actions .w2-404-btn-primary:hover{
  background: #16a34a;
}

.w2-404-actions .w2-404-btn-ghost{
  background: transparent;
  color: rgba(11,15,20,.86);
}

.w2-404-actions .w2-404-btn-ghost:hover{
  background: rgba(11,15,20,.04);
}

/* links */
.w2-404-copy .w2-404-links{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(11,15,20,.08);
}

.w2-404-links .w2-404-links-title{
  font-weight: 650;
  color: rgba(11,15,20,.86);
  margin-bottom: 10px;
}

.w2-404-links .w2-404-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.w2-404-list .w2-404-li{
  padding: 0;
  margin: 0;
}

.w2-404-li .w2-404-link{
  text-decoration: none;
  color: rgba(11,15,20,.68);
  font-weight: 600;
  transition: color .16s ease, transform .16s ease;
  display: inline-block;
}

.w2-404-li .w2-404-link:hover{
  color: rgba(11,15,20,.92);
  transform: translateX(2px);
}

/* dropdown support if menu has nested items */
.w2-404-li .w2-404-sub{
  list-style: none;
  padding: 10px 0 0 14px;
  margin: 0;
  display: grid;
  gap: 8px;
  border-left: 1px solid rgba(11,15,20,.08);
}

/* note */
.w2-404-copy .w2-404-note{
  margin-top: 22px;
  color: rgba(11,15,20,.56);
  line-height: 1.7;
}

.w2-404-note .w2-404-note-label{
  font-weight: 700;
  color: rgba(11,15,20,.74);
}

.w2-404-note .w2-404-note-link{
  color: rgba(34,197,94,.92);
  text-decoration: none;
  font-weight: 650;
  margin-left: 6px;
}

.w2-404-note .w2-404-note-link:hover{
  color: rgba(22,163,74,.98);
}

/* RIGHT visual */
.w2-404-grid .w2-404-visual{
  position: relative;
}

.w2-404-visual .w2-404-visual-inner{
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow:
    0 18px 44px rgba(11,15,20,.06),
    0 2px 6px rgba(11,15,20,.04);
  padding: 18px;
}

.w2-404-visual-top{
  display: flex;
  align-items: center;
  gap: 10px;
}

.w2-404-visual-top .w2-404-logo{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.w2-404-visual-top .w2-404-visual-title{
  font-weight: 650;
  letter-spacing: -0.01em;
  color: rgba(11,15,20,.86);
}

.w2-404-visual-inner .w2-404-visual-frame{
  margin-top: 14px;
  overflow: hidden;
  background: rgba(11,15,20,.02);
}

.w2-404-visual-frame .w2-404-image{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.w2-404-visual-inner .w2-404-visual-caption{
  margin-top: 12px;
  color: rgba(11,15,20,.58);
}

/* responsive */
@media (max-width: 980px){
  .w2-404{
    padding: 70px 0 90px;
  }

  .w2-404-wrap .w2-404-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .w2-404-visual-frame .w2-404-image{
    height: 320px;
  }
}




/* =========================
   ABOUT — new design (2way)
   square, clean, premium
   ========================= */

.w2-about{
  padding: 80px 0 110px;
}

.w2-about .w2-about-wrap{
 
  margin: 0 auto;
  padding: 0 28px;
}

/* TOP */
.w2-about-wrap .w2-about-top{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 26px;
  align-items: stretch;
}

/* brandline */
.w2-about-copy .w2-about-brandline{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.w2-about-brandline .w2-about-logo{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.w2-about-brandline .w2-about-brandtext{
  color: rgba(11,15,20,.68);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.w2-about-copy .w2-about-title{
  margin: 0;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #0b0f14;
}

.w2-about-copy .w2-about-lead{
  margin-top: 14px;
  color: rgba(11,15,20,.64);
  line-height: 1.75;
  font-size: 18px;
  max-width: 70ch;
}

/* facts */
.w2-about-copy .w2-about-facts{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.w2-about-facts .w2-about-fact{
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow: var(--w2-shadow-sm, 0 6px 18px rgba(11,15,20,.04));
  padding: 14px 14px;
}

.w2-about-fact .w2-about-fact-k{
  color: rgba(11,15,20,.52);
  font-weight: 600;
  font-size: 13px;
}

.w2-about-fact .w2-about-fact-v{
  margin-top: 6px;
  color: rgba(11,15,20,.90);
  font-weight: 650;
  letter-spacing: -0.01em;
}

/* visual */
.w2-about-top .w2-about-visual{
  height: 100%;
}

.w2-about-visual .w2-about-visual-inner{
  height: 100%;
  min-height: 420px;
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow: var(--w2-shadow-md, 0 18px 44px rgba(11,15,20,.06));
  overflow: hidden;
}

.w2-about-visual-inner .w2-about-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .9s ease;
}

.w2-about-visual-inner:hover .w2-about-image{
  transform: scale(1.08);
}

/* MID grid cards */
.w2-about-wrap .w2-about-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.w2-about-grid .w2-about-card{
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow: var(--w2-shadow-sm, 0 6px 18px rgba(11,15,20,.04));
  padding: 22px 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.w2-about-grid .w2-about-card:hover{
  transform: translateY(-3px);
  border-color: rgba(11,15,20,.12);
  box-shadow: var(--w2-shadow-md, 0 18px 44px rgba(11,15,20,.06));
}

.w2-about-card .w2-about-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 10px;
  background: rgba(34,197,94,.14);
  color: rgba(11,15,20,.92);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.w2-about-card .w2-about-card-title{
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #0b0f14;
}

.w2-about-card .w2-about-card-text{
  margin-top: 10px;
  color: rgba(11,15,20,.64);
  line-height: 1.7;
}

.w2-about-card .w2-about-list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.w2-about-list .w2-about-li{
  position: relative;
  padding-left: 16px;
  color: rgba(11,15,20,.66);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.w2-about-li::before{
  content:"";
  position:absolute;
  left:0;
  top: 8px;
  width:6px;
  height:6px;
  background: rgba(34,197,94,.80);
}

/* BLACK panel */
.w2-about-wrap .w2-about-black{
  margin-top: 18px;
  background: #050505;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  overflow: hidden;
}

.w2-about-black .w2-about-black-inner{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 18px;
  padding: 26px 26px;
  position: relative;
}

.w2-about-black-inner::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(620px 300px at 20% 10%, rgba(34,197,94,.12), transparent 62%),
    radial-gradient(520px 260px at 90% 30%, rgba(255,255,255,.05), transparent 60%);
  opacity: .9;
}

.w2-about-black-inner .w2-about-black-left,
.w2-about-black-inner .w2-about-black-right{
  position: relative;
  z-index: 1;
}

.w2-about-black-left .w2-about-black-kicker{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
}

.w2-about-black-left .w2-about-black-title{
  margin-top: 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.95);
  line-height: 1.15;
}

.w2-about-black-left .w2-about-black-text{
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
}

/* pills */
.w2-about-black-right{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
}

.w2-about-black-right .w2-about-pill{
  padding: 12px 12px;
  border-radius: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-weight: 650;
  letter-spacing: -0.01em;
}

/* responsive */
@media (max-width: 980px){
  .w2-about{
    padding: 64px 0 90px;
  }

  .w2-about-wrap .w2-about-top{
    grid-template-columns: 1fr;
  }

  .w2-about-copy .w2-about-facts{
    grid-template-columns: 1fr;
  }

  .w2-about-visual .w2-about-visual-inner{
    min-height: 320px;
  }

  .w2-about-wrap .w2-about-grid{
    grid-template-columns: 1fr;
  }

  .w2-about-black .w2-about-black-inner{
    grid-template-columns: 1fr;
  }
}




/* =========================
   SERVICES — new design (stage-friendly)
   no max-width, clean spacing, square
   ========================= */

.w2-services{
  padding: 84px 0 120px;
}

.w2-services .w2-services-wrap{
  width: 100%;
  padding: 0 28px; /* dacă stage are padding, redu sau pune 0 */
}

/* HERO */
.w2-services-wrap .w2-services-hero{
  margin-bottom: 28px;
}

.w2-services-hero .w2-services-brandline{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.w2-services-brandline .w2-services-logo{
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.w2-services-brandline .w2-services-brandtext{
  color: rgba(11,15,20,.68);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.w2-services-hero .w2-services-title{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #0b0f14;
}

.w2-services-hero .w2-services-lead{
  margin-top: 14px;
  color: rgba(11,15,20,.64);
  line-height: 1.75;
  font-size: 18px;
  max-width: 80ch;
}

/* KPIs */
.w2-services-hero .w2-services-kpis{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.w2-services-kpis .w2-services-kpi{
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow: var(--w2-shadow-sm, 0 6px 18px rgba(11,15,20,.04));
  padding: 14px 14px;
}

.w2-services-kpi .w2-services-kpi-v{
  font-weight: 750;
  letter-spacing: -0.02em;
  color: rgba(11,15,20,.90);
}

.w2-services-kpi .w2-services-kpi-k{
  margin-top: 6px;
  color: rgba(11,15,20,.56);
  font-weight: 600;
  font-size: 13px;
}

/* GRID (3 core services) */
.w2-services-wrap .w2-services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.w2-services-grid .w2-services-card{
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow: var(--w2-shadow-sm, 0 6px 18px rgba(11,15,20,.04));
  padding: 22px 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.w2-services-grid .w2-services-card:hover{
  transform: translateY(-3px);
  border-color: rgba(11,15,20,.12);
  box-shadow: var(--w2-shadow-md, 0 18px 44px rgba(11,15,20,.06));
}

/* chip */
.w2-services-card .w2-services-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.18);
  color: rgba(11,15,20,.92);
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.w2-services-chip .w2-services-ico{
  font-size: 13px;
  opacity: .95;
}

.w2-services-card .w2-services-card-title{
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #0b0f14;
  line-height: 1.25;
}

.w2-services-card .w2-services-card-text{
  margin-top: 10px;
  color: rgba(11,15,20,.64);
  line-height: 1.7;
}

/* list */
.w2-services-card .w2-services-list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.w2-services-list .w2-services-li{
  position: relative;
  padding-left: 16px;
  color: rgba(11,15,20,.66);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.w2-services-li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: rgba(34,197,94,.80);
}

/* PROCESS */
.w2-services-wrap .w2-services-process{
  margin-bottom: 26px;
  padding-top: 10px;
  border-top: 1px solid rgba(11,15,20,.06);
}

.w2-services-process .w2-services-process-head{
  margin-bottom: 16px;
}

.w2-services-h2{
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: #0b0f14;
}

.w2-services-sub{
  margin-top: 10px;
  color: rgba(11,15,20,.64);
  line-height: 1.7;
}

.w2-services-process .w2-services-steps{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.w2-services-steps .w2-services-step{
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  padding: 18px 18px;
}

.w2-services-step .w2-services-step-nr{
  color: rgba(34,197,94,.92);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.w2-services-step .w2-services-step-title{
  margin-top: 10px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: rgba(11,15,20,.86);
}

.w2-services-step .w2-services-step-text{
  margin-top: 8px;
  color: rgba(11,15,20,.64);
  line-height: 1.7;
}

/* FAQ */
.w2-services-wrap .w2-services-faq{
  padding-top: 10px;
  border-top: 1px solid rgba(11,15,20,.06);
}

.w2-services-faq .w2-services-faq-head{
  margin-bottom: 16px;
}

.w2-services-faq .w2-services-faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.w2-services-faq-grid .w2-services-qa{
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  padding: 18px 18px;
}

.w2-services-qa .w2-services-q{
  font-weight: 650;
  letter-spacing: -0.02em;
  color: rgba(11,15,20,.86);
}

.w2-services-qa .w2-services-a{
  margin-top: 8px;
  color: rgba(11,15,20,.64);
  line-height: 1.7;
}

/* responsive */
@media (max-width: 980px){
  .w2-services{
    padding: 64px 0 96px;
  }

  .w2-services .w2-services-wrap{
    padding: 0 18px;
  }

  .w2-services-hero .w2-services-kpis{
    grid-template-columns: 1fr;
  }

  .w2-services-wrap .w2-services-grid{
    grid-template-columns: 1fr;
  }

  .w2-services-process .w2-services-steps{
    grid-template-columns: 1fr;
  }

  .w2-services-faq .w2-services-faq-grid{
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   CONTACT HERO
========================================================= */

.w2-contact-hero{
  padding: 120px 0 60px;
  background: #f5f6f7;
}

.w2-contact-hero .w2-contact-hero-inner{
  text-align: center;
  padding: 0 24px;
}

.w2-contact-hero .w2-contact-title{
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #0b0f14;
  margin-bottom: 18px;
}

.w2-contact-hero .w2-contact-sub{
  font-size: 18px;
  color: rgba(11,15,20,.65);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.w2-contact-section{
  padding: 80px 0 120px;
  background: #f5f6f7;
}

.w2-contact-section .w2-contact-grid{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  padding: 0 40px;
}


/* =========================================================
   LEFT — INFO
========================================================= */

.w2-contact-info .w2-contact-info-title{
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: #0b0f14;
}

.w2-contact-info .w2-contact-cards{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.w2-contact-cards .w2-contact-card{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;

  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;

  color: #0b0f14;

  box-shadow: 0 10px 30px rgba(11,15,20,.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.w2-contact-card i{
  font-size: 18px;
  color: #22c55e;
  width: 22px;
  text-align: center;
}

.w2-contact-card .w2-contact-card-text{
  font-weight: 600;
  letter-spacing: -0.01em;
}

.w2-contact-cards .w2-contact-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(11,15,20,.10);
}

.w2-contact-info .w2-contact-info-note{
  margin-top: 22px;
  font-size: 14px;
  color: rgba(11,15,20,.55);
}


/* =========================================================
   RIGHT — FORM
========================================================= */

.w2-contact-form-wrap .w2-contact-form-title{
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #0b0f14;
}

.w2-contact-form-wrap .w2-contact-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* =========================================================
   INPUTS
========================================================= */

.w2-contact-form .w2-input{
  width: 100%;
  height: 54px;
  padding: 0 16px;

  border-radius: 12px;
  border: 1px solid rgba(11,15,20,.10);
  background: #ffffff;

  font-size: 15px;
  color: #0b0f14;

  transition: border .16s ease, box-shadow .16s ease, background .16s ease;
}

.w2-contact-form .w2-textarea{
  height: auto;
  padding: 14px 16px;
  resize: vertical;
}

/* focus premium */

.w2-contact-form .w2-input:focus{
  outline: none;
  border-color: rgba(34,197,94,.55);
  box-shadow: 0 0 0 4px rgba(34,197,94,.12);
  background: #ffffff;
}


/* =========================================================
   FORM ROWS
========================================================= */

.w2-contact-form .w2-form-row{
  display: block;
}

.w2-contact-form .w2-form-row-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.w2-contact-form .w2-form-row-submit{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 6px;
}

.w2-contact-form .w2-form-note{
  font-size: 13px;
  color: rgba(11,15,20,.55);
  margin-top: 6px;
}


/* =========================================================
   BUTTON (dacă nu ai deja)
========================================================= */

.w2-btn.w2-btn-primary{
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: none;

  background: #22c55e;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;

  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.w2-btn.w2-btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(34,197,94,.35);
  background: #16a34a;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px){

  .w2-contact-section .w2-contact-grid{
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 24px;
  }

}

@media (max-width: 640px){

  .w2-contact-hero{
    padding: 90px 0 40px;
  }

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

  .w2-contact-form .w2-form-row-submit{
    flex-direction: column;
    align-items: stretch;
  }

  .w2-btn.w2-btn-primary{
    width: 100%;
  }

}


.w2-form-alert{
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 16px;
}

.w2-form-alert-success{
  background: rgba(34,197,94,.12);
  color: #166534;
}

.w2-form-alert-danger{
  background: rgba(239,68,68,.12);
  color: #991b1b;
}



/* =========================
   BLOG LIST (category/search)
   ========================= */

.w2-blog-hero{
  padding: 120px 24px 44px;
  text-align: center;
}

.w2-blog-hero .w2-blog-hero-inner{
  padding: 0 16px;
}

.w2-blog-hero .w2-blog-kicker{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,15,20,.50);
  margin-bottom: 10px;
}

.w2-blog-hero .w2-blog-title{
  margin: 0;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0b0f14;
  line-height: 1.05;
}

.w2-blog-hero .w2-blog-sub{
  margin-top: 14px;
  color: rgba(11,15,20,.62);
  line-height: 1.7;
  font-size: 16px;
}

.w2-blog-hero .w2-blog-desc{
  margin-top: 14px;
  color: rgba(11,15,20,.60);
}

/* grid */
.w2-blog-section{
  padding: 26px 40px 120px;
}

.w2-blog-section .w2-blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.w2-blog-empty{
  grid-column: 1 / -1;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow: 0 10px 30px rgba(11,15,20,.06);
}

.w2-blog-empty .w2-blog-empty-title{
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b0f14;
}

.w2-blog-empty .w2-blog-empty-text{
  margin-top: 8px;
  color: rgba(11,15,20,.62);
}

/* responsive */
@media (max-width: 1100px){
  .w2-blog-section .w2-blog-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .w2-blog-section{ padding: 18px 18px 110px; }
  .w2-blog-section .w2-blog-grid{ grid-template-columns: 1fr; }
}

/* =========================
   POST DETAIL
   ========================= */

.w2-post-hero{
  padding: 120px 24px 44px;
  text-align: center;
}

.w2-post-hero .w2-post-kicker{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,15,20,.50);
  margin-bottom: 10px;
}

.w2-post-hero .w2-post-title{
  margin: 0;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0b0f14;
  line-height: 1.06;
}

.w2-post-cats{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.w2-post-cats .w2-post-chip{
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.18);
  color: rgba(11,15,20,.82);
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
}

.w2-post-share{
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(11,15,20,.45);
}

.w2-post-share .w2-post-share-link{
  color: rgba(11,15,20,.70);
  text-decoration: none;
  font-weight: 700;
}

.w2-post-share .w2-post-share-link:hover{
  color: rgba(11,15,20,.92);
}

.w2-post-section{
  padding: 20px 24px 120px;
}

/* dacă vrei stage-friendly fără max width, șterge max-width; 
   dar pentru post content e bine să existe pentru readability */
.w2-post-section .w2-post-wrap{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 12px;
}

.w2-post-image{
  margin: 0;
  background: #fff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow: 0 18px 44px rgba(11,15,20,.06);
  overflow: hidden;
}

.w2-post-image img{
  width: 100%;
  height: auto;
  display: block;
}

.w2-post-content{
  margin-top: 28px;
  color: #0b0f14;
  line-height: 1.8;
  font-size: 17px;
}



/* =========================
   BLOG POST CARD (w2)
   ========================= */

.w2-postcard{
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow: var(--w2-shadow-sm, 0 10px 30px rgba(11,15,20,.06));
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.w2-postcard:hover{
  transform: translateY(-3px);
  border-color: rgba(11,15,20,.12);
  box-shadow: var(--w2-shadow-md, 0 18px 44px rgba(11,15,20,.10));
}

.w2-postcard .w2-postcard-link{
  display: block;
  text-decoration: none;
  color: inherit;
}

.w2-postcard .w2-postcard-media{
  height: 220px;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform .9s ease;
}

.w2-postcard:hover .w2-postcard-media{
  transform: scale(1.08);
}

/* fallback */
.w2-postcard .w2-postcard-media-empty{
  height: 220px;
  background: #050505;
  display: grid;
  place-items: center;
}

.w2-postcard-media-empty .w2-postcard-media-empty-text{
  color: rgba(255,255,255,.75);
  letter-spacing: .14em;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.w2-postcard .w2-postcard-body{
  padding: 18px 18px 16px;
}

.w2-postcard-body .w2-postcard-title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0b0f14;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.w2-postcard-body .w2-postcard-excerpt{
  margin-top: 10px;
  color: rgba(11,15,20,.64);
  line-height: 1.7;
  font-size: 14.5px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.w2-postcard-body .w2-postcard-meta{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: rgba(11,15,20,.72);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 13px;
}

.w2-postcard-meta .w2-postcard-arrow{
  transform: translateX(0);
  transition: transform .18s ease;
}

.w2-postcard:hover .w2-postcard-arrow{
  transform: translateX(3px);
}

/* mobile */
@media (max-width: 640px){
  .w2-postcard .w2-postcard-media{
    height: 200px;
  }
}





/* =========================
   PAGE TEMPLATE (w2)
   clean 2026, square
   ========================= */

.w2-page{
  padding: 120px 0 120px;
  background: transparent; /* respectă background-ul global */
}

.w2-page .w2-page-wrap{
  width: 100%;
  padding: 0 40px; /* dacă stage are padding, redu sau pune 0 */
}

/* HERO */
.w2-page-wrap .w2-page-hero{
  text-align: center;
  margin-bottom: 26px;
}

.w2-page-hero .w2-page-kicker{
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(11,15,20,.45);
  margin-bottom: 12px;
}

.w2-page-hero .w2-page-title{
  margin: 0;
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: #0b0f14;
}

.w2-page-hero .w2-page-sub{
  margin: 14px auto 0;
  color: rgba(11,15,20,.62);
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 78ch;
}

/* MEDIA */
.w2-page-wrap .w2-page-media{
  margin: 0 auto 30px;
  background: #ffffff;
  border: 1px solid rgba(11,15,20,.08);
  box-shadow: 0 18px 44px rgba(11,15,20,.06);
  overflow: hidden;
}

.w2-page-media img{
  width: 100%;
  height: auto;
  display: block;
}

/* CONTENT (reading mode) */
.w2-page-wrap .w2-page-content{
  /* dacă NU vrei max width deloc, șterge următoarele 2 linii */
  max-width: 920px;
  margin: 0 auto;

  font-size: 17px;
  line-height: 1.85;
  color: #0b0f14;
}

/* content typography reset */
.w2-page-content h2,
.w2-page-content h3{
  letter-spacing: -0.02em;
  margin-top: 28px;
}

.w2-page-content p{
  margin: 14px 0;
  color: rgba(11,15,20,.72);
}

.w2-page-content a{
  color: rgba(11,15,20,.92);
  text-decoration: underline;
  text-decoration-color: rgba(34,197,94,.55);
  text-underline-offset: 3px;
}

.w2-page-content a:hover{
  text-decoration-color: rgba(34,197,94,.92);
}

/* mobile */
@media (max-width: 980px){
  .w2-page{
    padding: 96px 0 100px;
  }
  .w2-page .w2-page-wrap{
    padding: 0 18px;
  }
  .w2-page-wrap .w2-page-content{
    max-width: 100%;
  }
}




/* ========================================
   PROCESS — AWWWARDS EDITION
======================================== */

.w2-process{
  padding: 140px 0;
}

/* ---------- HEAD ---------- */

.w2-process-head{
  text-align: center;
  margin-bottom: 90px;
}

.w2-process-title{
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #0b0f14;
}

.w2-process-lead{
  font-size: 18px;
  color: rgba(11,15,20,.6);
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- FLOW ---------- */

.w2-process-flow{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 44px;
}

/* vertical line container */

.w2-process-line{
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(34,197,94,.12);
  overflow: hidden;
}

/* animated fill */

.w2-process-line-fill{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;

  background: linear-gradient(
    to bottom,
    #22c55e,
    rgba(34,197,94,.4)
  );

  transition: height .25s linear;
}

/* ---------- STEP ---------- */

.w2-process-step{
  position: relative;
  margin-bottom: 64px;

  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .6s cubic-bezier(.2,.65,.3,1),
    transform .6s cubic-bezier(.2,.65,.3,1);
}

.w2-process-step.w2-in{
  opacity: 1;
  transform: translateY(0);
}

/* dot */

.w2-process-dot{
  position: absolute;
  left: -30px;
  top: 6px;

  width: 16px;
  height: 16px;
  border-radius: 50%;

  background: #22c55e;

  box-shadow:
    0 0 0 0 rgba(34,197,94,.35);

  animation: w2Pulse 2.4s infinite;
}

/* pulse animation */

@keyframes w2Pulse{
  0%{
    box-shadow: 0 0 0 0 rgba(34,197,94,.35);
  }
  70%{
    box-shadow: 0 0 0 10px rgba(34,197,94,0);
  }
  100%{
    box-shadow: 0 0 0 0 rgba(34,197,94,0);
  }
}

/* content */

.w2-process-content h3{
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: #0b0f14;
}

.w2-process-content p{
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(11,15,20,.65);
  max-width: 520px;
}

/* ---------- MOBILE ---------- */

@media (max-width: 768px){

  .w2-process{
    padding: 100px 0;
  }

  .w2-process-flow{
    padding-left: 34px;
  }

  .w2-process-dot{
    left: -26px;
  }
}


/* =========================
   PROCESS — hover states (desktop only)
   ========================= */
@media (hover:hover) and (pointer:fine){

  .w2-process-step{
    cursor: default;
  }

  .w2-process-step .w2-process-content{
    transition: transform .22s cubic-bezier(.2,.65,.3,1);
  }

  .w2-process-step .w2-process-content h3{
    position: relative;
    display: inline-block;
  }

  /* underline green that "slides" in */
  .w2-process-step .w2-process-content h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background: rgba(34,197,94,.55);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease, opacity .22s ease;
    opacity:.85;
  }

  /* dot hover: ring + glow + stop pulse */
  .w2-process-step:hover .w2-process-dot{
    animation: none;
    transform: scale(1.18);
    box-shadow:
      0 0 0 8px rgba(34,197,94,.16),
      0 14px 34px rgba(34,197,94,.38);
    transition: transform .22s ease, box-shadow .22s ease;
  }

  /* content hover: slight lift */
  .w2-process-step:hover .w2-process-content{
    transform: translateY(-2px);
  }

  /* title underline appears */
  .w2-process-step:hover .w2-process-content h3::after{
    transform: scaleX(1);
  }

  /* paragraph becomes a bit darker (readability) */
  .w2-process-step:hover .w2-process-content p{
    color: rgba(11,15,20,.72);
    transition: color .22s ease;
  }

  /* subtle segment glow on the main line (cheap trick: add a soft shadow) */
  .w2-process-step:hover ~ .w2-process-line .w2-process-line-fill{
    filter: brightness(1.05);
  }
}


/* ========================================
   PROJECTS — premium clean
======================================== */

.w2-projects{
  padding: 120px 0 140px;
}

/* HEAD */

.w2-projects-head{
  text-align:center;
  margin-bottom:56px;
}

.w2-projects-title{
  font-size: clamp(34px,4vw,48px);
  font-weight:900;
  letter-spacing:-0.02em;
  margin-bottom:12px;
}

.w2-projects-lead{
  font-size:18px;
  color:rgba(11,15,20,.6);
}

/* FILTERS */

.w2-projects-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:56px;
}

.w2-filter-btn{
  appearance:none;
  border:0;
  background:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  letter-spacing:-0.01em;
  cursor:pointer;

  box-shadow: 0 6px 20px rgba(0,0,0,.06);

  transition: all .18s ease;
}

.w2-filter-btn:hover{
  transform: translateY(-1px);
}

.w2-filter-btn.w2-is-active{
  background:#22c55e;
  color:#fff;
  box-shadow: 0 12px 30px rgba(34,197,94,.35);
}

/* GRID */

.w2-projects-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:28px;
}

/* ITEM */

.w2-project-item{
  grid-column: span 6;
}

/* CARD */

.w2-project-card{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* MEDIA */

.w2-project-media{
  position:relative;
  overflow:hidden;
  background:#f3f4f6;
}

.w2-project-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  transform: scale(1.01);
  transition: transform .6s cubic-bezier(.2,.65,.3,1);
}

/* BODY */

.w2-project-body{
  padding-top:16px;
}

.w2-project-name{
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.01em;
  margin-bottom:6px;
}

.w2-project-cats{
  font-size:13px;
  color:rgba(11,15,20,.55);
}

/* HOVER MAGIC */

.w2-project-card:hover .w2-project-media img{
  transform: scale(1.06);
}

/* RESPONSIVE */

@media (max-width: 992px){
  .w2-project-item{
    grid-column: span 12;
  }
}



/* ========================================
   FLOATING WHATSAPP — premium
======================================== */

.w2-wa-float{
  position: fixed;
  right: 22px;
  bottom: 110px; /* 👈 stă deasupra dock-ului */

  z-index: 55;
  text-decoration: none;
}

/* button */

.w2-wa-btn{
  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: #22c55e;
  color: #fff;
  font-size: 22px;

  box-shadow:
    0 18px 40px rgba(34,197,94,.35),
    0 6px 18px rgba(0,0,0,.18);

  transform: translateZ(0);
  transition:
    transform .18s cubic-bezier(.2,.65,.3,1),
    box-shadow .18s ease,
    background .18s ease;
}

/* subtle pulse ring */

.w2-wa-btn::after{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:50%;
  border:2px solid rgba(34,197,94,.35);
  animation: w2WaPulse 2.6s infinite;
}

/* hover */

.w2-wa-float:hover .w2-wa-btn{
  transform: scale(1.08);
  box-shadow:
    0 26px 60px rgba(34,197,94,.45),
    0 10px 26px rgba(0,0,0,.22);
}

/* pulse animation */

@keyframes w2WaPulse{
  0%{
    opacity:.6;
    transform: scale(1);
  }
  70%{
    opacity:0;
    transform: scale(1.35);
  }
  100%{
    opacity:0;
    transform: scale(1.35);
  }
}

/* mobile tweak */

@media (max-width: 768px){

  .w2-wa-float{
    right: 16px;
    bottom: 96px;
  }

  .w2-wa-btn{
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}

/* reduce motion respect */

@media (prefers-reduced-motion: reduce){
  .w2-wa-btn::after{
    animation:none;
  }
}


