/* ==========================================================================
   VEDACON — Companie de construcții
   Landing page stylesheet (Blade only, no build step)
   Accent: #FD6401
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
    --orange:        #FD6401;
    --orange-600:    #e85a00;
    --orange-700:    #c64e00;
    --orange-soft:   rgba(253, 100, 1, 0.10);
    --orange-soft-2: rgba(253, 100, 1, 0.16);

    --ink:    #0c0f14;
    --ink-2:  #12161d;
    --ink-3:  #1b212b;

    --slate:    #54606e;
    --slate-2:  #828d9b;

    --line:     #e8ebf0;
    --line-2:   #f0f2f5;

    --bg:        #ffffff;
    --bg-soft:   #f5f6f8;
    --white:     #ffffff;

    --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
    --font-body:    "Inter", "Segoe UI", system-ui, sans-serif;

    --radius:    14px;
    --radius-lg: 20px;
    --radius-sm: 10px;

    --shadow-sm: 0 1px 2px rgba(12, 15, 20, 0.04), 0 4px 14px rgba(12, 15, 20, 0.05);
    --shadow-md: 0 10px 30px rgba(12, 15, 20, 0.08);
    --shadow-lg: 0 24px 60px rgba(12, 15, 20, 0.16);
    --shadow-orange: 0 14px 30px rgba(253, 100, 1, 0.28);

    --container: 1240px;
    --header-h: 84px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--slate);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea, select { font-family: inherit; font-size: inherit; }

::selection { background: var(--orange); color: #fff; }

/* ---------- 3. Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--ink); }

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- 4. Eyebrow + section heads ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--orange);
    display: inline-block;
}
.eyebrow--center::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--orange);
    display: inline-block;
}
.eyebrow--light { color: #ffb27d; }

.section-head { max-width: 680px; margin-bottom: 58px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title {
    font-size: clamp(2rem, 1.2rem + 2.6vw, 3.1rem);
    color: var(--ink);
    margin-bottom: 18px;
}
.section-title--light { color: #fff; }

.section-lead {
    font-size: 1.075rem;
    color: var(--slate);
    line-height: 1.75;
}
.section-lead--light { color: rgba(255,255,255,0.66); }

.text-accent { color: var(--orange); }

/* ---------- 5. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1;
    padding: 17px 28px;
    border-radius: var(--radius-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
                background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
    border: 1.5px solid transparent;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-3px); box-shadow: 0 20px 40px rgba(253,100,1,0.34); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-3); transform: translateY(-3px); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-3px); }

.btn-ghost-light { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.28); backdrop-filter: blur(6px); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-block { width: 100%; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    transition: gap 0.3s var(--ease), color 0.25s ease;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--orange); gap: 12px; }

/* ---------- 6. Header / Topbar / Nav ---------- */
.topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
}
.topbar__group { display: flex; align-items: center; gap: 26px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s ease; }
.topbar__item svg { width: 15px; height: 15px; color: var(--orange); }
.topbar a.topbar__item:hover { color: #fff; }
.topbar__lang { display: inline-flex; gap: 6px; align-items: center; }
.topbar__lang a { padding: 2px 7px; border-radius: 5px; font-weight: 600; font-size: 0.8rem; }
.topbar__lang a.is-active { background: var(--orange); color: #fff; }

/* wrapper fix care ține topbar + header împreună la top */
.site-top {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
}
.site-header {
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    transition: height 0.35s ease;
}

/* topbar se poate restrânge la scroll */
.topbar { overflow: hidden; max-height: 60px; transition: max-height 0.4s var(--ease), opacity 0.3s ease; }

/* transparent over hero */
.site-header .nav__link { color: #fff; }
.site-header .brand__logo { color: #fff; }

/* solid when scrolled (clasa is-scrolled stă pe wrapper) */
.site-top.is-scrolled .topbar { max-height: 0; opacity: 0; }
.site-top.is-scrolled .site-header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(12,15,20,0.06);
}
.site-top.is-scrolled .site-header__bar { height: 72px; }
.site-top.is-scrolled .nav__link { color: var(--ink); }
.site-top.is-scrolled .brand__logo { color: var(--ink); }
.site-top.is-scrolled .nav-toggle span { background: var(--ink); }

.brand { display: inline-flex; align-items: center; }
.brand__logo {
    display: block;
    height: 52px;
    width: auto;
    color: var(--ink); /* fallback; suprascris per context (hero/scroll/footer) */
    transition: height 0.35s ease, color 0.35s ease;
}
.site-top.is-scrolled .brand__logo { height: 42px; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav__list { display: flex; align-items: center; gap: 32px; }
.nav__link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.3s var(--ease);
}
.nav__link:hover { color: var(--orange); }
.nav__link:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    z-index: 110;
}
.nav-toggle span {
    height: 2.5px; width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s ease, background 0.3s ease;
}
body.menu-open .nav-toggle span { background: var(--ink); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: calc(var(--header-h) + 78px); /* topbar + header */
    padding-bottom: 120px;
    overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(100deg, rgba(8,11,15,0.92) 0%, rgba(8,11,15,0.74) 42%, rgba(8,11,15,0.30) 100%),
        linear-gradient(0deg, rgba(8,11,15,0.55), rgba(8,11,15,0));
}
.hero__inner { max-width: 720px; }
.hero__eyebrow { color: #ffb27d; }
.hero__eyebrow::before { background: var(--orange); }
.hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 1.4rem + 4.6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.04;
    margin-bottom: 26px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero__lead {
    font-size: 1.18rem;
    color: rgba(255,255,255,0.78);
    max-width: 560px;
    margin-bottom: 38px;
    line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Hero highlights (Prima rată / Preț) — pill-uri premium pe fundalul închis */
.hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 4px 0 36px;
}
.hl-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 13px 22px 13px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    transition: transform 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.hl-pill:hover {
    transform: translateY(-2px);
    background: rgba(253, 100, 1, 0.10);
    border-color: rgba(253, 100, 1, 0.45);
}
.hl-pill__icon {
    width: 38px; height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: var(--shadow-orange);
}
.hl-pill__icon svg { width: 18px; height: 18px; }
.hl-pill__body { display: inline-flex; flex-direction: column; line-height: 1.15; }
.hl-pill__label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.hl-pill__value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.18rem;
    color: #fff;
    margin-top: 3px;
}
.hl-pill:hover .hl-pill__value { color: var(--orange); }

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 46px;
    margin-top: 56px;
    padding-top: 34px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__trust-item .n {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero__trust-item .n span { color: var(--orange); }
.hero__trust-item .t {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
}

@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,10px)} 100%{opacity:0} }

/* ---------- 8. Stats band (overlaps hero) ---------- */
.stats-band { position: relative; margin-top: -78px; z-index: 5; }
.stats-band__card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}
.stat {
    padding: 42px 34px;
    border-right: 1px solid var(--line);
    position: relative;
    text-align: center;
}
.stat:last-child { border-right: none; }
.stat__value {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 1.4rem + 1.6vw, 2.9rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.stat__value sup { color: var(--orange); font-size: 0.5em; top: -0.7em; }
.stat__label {
    margin-top: 12px;
    font-size: 0.92rem;
    color: var(--slate);
}
.stat::before {
    content: "";
    position: absolute;
    left: 50%; bottom: 22px;
    transform: translateX(-50%);
    width: 30px; height: 3px;
    background: var(--orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stat:hover::before { opacity: 1; }

/* ---------- 9. Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 34px 34px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card__index {
    position: absolute;
    top: 28px; right: 32px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--line);
    transition: color 0.3s ease;
}
.service-card:hover .service-card__index { color: var(--orange-soft-2); }

.service-card__icon {
    width: 62px; height: 62px;
    border-radius: 15px;
    background: var(--orange-soft);
    display: grid; place-items: center;
    margin-bottom: 24px;
    transition: background 0.35s ease, transform 0.35s var(--ease);
}
.service-card__icon svg { width: 30px; height: 30px; color: var(--orange); transition: color 0.35s ease; }
.service-card:hover .service-card__icon { background: var(--orange); transform: rotate(-6deg); }
.service-card:hover .service-card__icon svg { color: #fff; }

.service-card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.service-card p { font-size: 0.98rem; margin-bottom: 0; }

/* ---------- 9b. Floor plans (planimetrii 3D) ---------- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.plan-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.plan-card__index {
    position: absolute;
    top: 18px; right: 22px;
    z-index: 2;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(12,15,20,0.55);
    backdrop-filter: blur(6px);
    padding: 6px 10px;
    border-radius: 6px;
}
.plan-card__media {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg-soft);
    position: relative;
    cursor: zoom-in;
}
.plan-card__media::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(12,15,20,0.18) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.plan-card:hover .plan-card__media::after { opacity: 1; }
.plan-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s var(--ease);
}
.plan-card:hover .plan-card__media img { transform: scale(1.06); }

.plan-card__zoom {
    position: absolute;
    bottom: 18px; right: 18px;
    z-index: 2;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: var(--shadow-orange);
    opacity: 0;
    transform: translateY(8px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.35s var(--ease);
    pointer-events: none;
}
.plan-card__zoom svg { width: 18px; height: 18px; }
.plan-card:hover .plan-card__zoom { opacity: 1; transform: translateY(0) scale(1); }
.plan-card__body {
    padding: 26px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.plan-card__heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 14px;
}
.plan-card__heading h3 {
    font-size: 1.25rem;
    margin: 0;
}
.plan-card__meta {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    padding: 5px 11px;
    background: var(--orange-soft);
    color: var(--orange);
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    line-height: 1;
}
.plan-card__meta svg { width: 14px; height: 14px; }
.plan-card__body p { font-size: 0.96rem; margin-bottom: 22px; flex: 1; }

/* ---------- 10. About ---------- */
.about {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}
.about__media { position: relative; }
.about__media-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/5;
}
.about__media-main img { width: 100%; height: 100%; object-fit: cover; }
.about__media-sub {
    position: absolute;
    bottom: -34px; right: -24px;
    width: 48%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    background: #fff;
}
.about__media-sub img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.about__badge {
    position: absolute;
    top: -26px; left: -26px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: var(--shadow-orange);
    text-align: center;
}
.about__badge .n { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; }
.about__badge .t { font-size: 0.78rem; opacity: 0.92; margin-top: 4px; max-width: 110px; }

.about__content h2 { margin-bottom: 20px; }
.about__content p { margin-bottom: 22px; }
.about__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
    margin: 30px 0 36px;
}
.about__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: var(--ink);
    font-size: 0.98rem;
}
.about__list .check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 7px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid; place-items: center;
    margin-top: 1px;
}
.about__list .check svg { width: 14px; height: 14px; }

/* ---------- 11. Why us (dark guarantees) ---------- */
.why { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.why::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, var(--orange-soft-2), transparent 68%);
}
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.why-card {
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 36px 30px;
    background: rgba(255,255,255,0.02);
    transition: transform 0.4s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.why-card:hover { transform: translateY(-8px); background: rgba(253,100,1,0.08); border-color: var(--orange); }
.why-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--orange);
    display: grid; place-items: center;
    margin-bottom: 22px;
    box-shadow: var(--shadow-orange);
}
.why-card__icon svg { width: 28px; height: 28px; color: #fff; }
.why-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.62); font-size: 0.95rem; }

/* ---------- 12. Projects ---------- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.project {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-sm);
}
.project img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.project::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(8,11,15,0.85) 0%, rgba(8,11,15,0.25) 45%, rgba(8,11,15,0) 70%);
}
.project:hover img { transform: scale(1.07); }
.project__body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 30px 28px;
    z-index: 2;
    color: #fff;
    transform: translateY(14px);
    transition: transform 0.45s var(--ease);
}
.project:hover .project__body { transform: translateY(0); }
.project__tag {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 14px;
}
.project__title { color: #fff; font-size: 1.32rem; margin-bottom: 6px; }
.project__meta {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.4s ease 0.05s, max-height 0.4s ease;
}
.project:hover .project__meta { opacity: 1; max-height: 40px; }
.project__meta span { display: inline-flex; align-items: center; gap: 6px; }
.project__meta svg { width: 15px; height: 15px; color: var(--orange); }

/* ---------- 13. Process ---------- */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.process::before {
    content: "";
    position: absolute;
    top: 32px; left: 11%; right: 11%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
    z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
    width: 66px; height: 66px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line);
    display: grid; place-items: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--ink);
    transition: all 0.35s var(--ease);
}
.step:hover .step__num { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-5px); box-shadow: var(--shadow-orange); }
.step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { font-size: 0.94rem; padding: 0 6px; }

/* ---------- 14. Testimonials ---------- */
.tst-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.tst-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tst-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tst-card__quote {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--orange-soft-2);
    line-height: 0.7;
    margin-bottom: 14px;
}
.tst-card__stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 16px; font-size: 0.95rem; }
.tst-card p { color: var(--ink); font-size: 1.02rem; line-height: 1.7; margin-bottom: 26px; }
.tst-card__person { display: flex; align-items: center; gap: 14px; }
.tst-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.tst-card__name { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1rem; }
.tst-card__role { font-size: 0.85rem; color: var(--slate-2); }

/* ---------- 15. CTA banner ---------- */
.cta {
    position: relative;
    background: var(--ink);
    border-radius: 24px;
    padding: 72px 8%;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.18; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, var(--orange-soft-2), transparent 55%);
    z-index: 0;
}
.cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta h2 { color: #fff; font-size: clamp(2rem, 1.3rem + 2.4vw, 3rem); margin-bottom: 18px; }
.cta h2 em { color: var(--orange); font-style: normal; }
.cta p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 34px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 16. Contact ---------- */
.contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
}
.contact__info h2 { margin-bottom: 18px; }
.contact__info > p { margin-bottom: 36px; }
.contact-line {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}
.contact-line:first-of-type { border-top: 1px solid var(--line); }
.contact-line__icon {
    flex-shrink: 0;
    width: 50px; height: 50px;
    border-radius: 13px;
    background: var(--orange-soft);
    color: var(--orange);
    display: grid; place-items: center;
}
.contact-line__icon svg { width: 22px; height: 22px; }
.contact-line__label { font-size: 0.82rem; color: var(--slate-2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-line__value { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.contact-line__value a:hover { color: var(--orange); }

.contact__socials { display: flex; gap: 12px; margin-top: 30px; }
.contact__socials a {
    width: 44px; height: 44px;
    border-radius: 11px;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--ink);
    transition: all 0.3s var(--ease);
}
.contact__socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }
.contact__socials svg { width: 19px; height: 19px; }

.contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 42px;
    border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ink);
    margin-bottom: 9px;
}
.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
    color: var(--ink);
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.form-control::placeholder { color: var(--slate-2); }
.form-control:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px var(--orange-soft);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-error { color: #d12f2f; font-size: 0.82rem; margin-top: 6px; }
.is-invalid { border-color: #d12f2f; }

.alert-success {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(34,160,90,0.1);
    border: 1px solid rgba(34,160,90,0.35);
    color: #1d8a4f;
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 500;
}
.alert-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- 17. Footer ---------- */
.footer { background: var(--ink-2); color: rgba(255,255,255,0.6); padding-top: 80px; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 56px;
}
.footer .brand__logo { color: #fff; height: 56px; }
.footer__about { margin: 22px 0 24px; font-size: 0.95rem; line-height: 1.7; max-width: 320px; }
.footer h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 22px;
    font-family: var(--font-display);
}
.footer__links li { margin-bottom: 13px; }
.footer__links a { font-size: 0.95rem; transition: color 0.2s ease, padding 0.2s ease; }
.footer__links a:hover { color: var(--orange); padding-left: 5px; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; }
.footer__contact svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__socials a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: grid; place-items: center;
    color: #fff;
    transition: all 0.3s var(--ease);
}
.footer__socials a:hover { background: var(--orange); transform: translateY(-3px); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 24px;
    font-size: 0.88rem;
}
.footer__bottom a:hover { color: var(--orange); }
.footer__credit { color: rgba(255,255,255,0.5); }
.footer__credit a { color: var(--orange); font-weight: 600; transition: opacity 0.2s ease; }
.footer__credit a:hover { opacity: 0.78; }

/* ---------- 18. Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- 19. Mobile nav panel ---------- */
.nav__backdrop {
    position: fixed; inset: 0;
    background: rgba(8,11,15,0.5);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 95;
}
body.menu-open .nav__backdrop { opacity: 1; visibility: visible; }

/* ---------- 20. Responsive ---------- */
@media (max-width: 1080px) {
    .services-grid, .projects-grid, .tst-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-grid { gap: 22px; }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .process { grid-template-columns: repeat(2, 1fr); gap: 44px 30px; }
    .process::before { display: none; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
    .section { padding: 80px 0; }
    .topbar { display: none; }
    .hero { padding-top: calc(var(--header-h) + 30px); } /* fără topbar pe mobil */
    .about { grid-template-columns: 1fr; gap: 80px; }
    .about__media { max-width: 460px; }
    .contact { grid-template-columns: 1fr; gap: 40px; }
    .stat { padding: 32px 24px; }

    /* mobile nav */
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: min(330px, 84vw);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: calc(var(--header-h) + 20px) 32px 32px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        box-shadow: var(--shadow-lg);
        z-index: 100;
    }
    body.menu-open .nav { transform: translateX(0); }
    .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .nav__link { color: var(--ink) !important; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
    .nav__link::after { display: none; }
    .nav .btn { margin-top: 24px; }
    .site-header.is-scrolled .nav__link { color: var(--ink); }
}

@media (max-width: 600px) {
    .container { padding: 0 18px; }
    .section { padding: 64px 0; }
    .services-grid, .projects-grid, .tst-grid, .why__grid, .process, .plans-grid { grid-template-columns: 1fr; }
    .plan-card__body { padding: 22px 22px 26px; }
    .about__list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero__trust { gap: 22px 32px; }
    .hero__actions { width: 100%; }
    .hero__actions .btn { flex: 1; }
    .hero__highlights { flex-direction: column; align-items: stretch; gap: 10px; }
    .hl-pill { width: 100%; justify-content: flex-start; }
    .contact-form { padding: 28px 22px; }
    .cta { padding: 52px 26px; }
    .about__media-sub { display: none; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; text-align: center; }

    /* Stats band — stack vertical pe mobil (separatori orizontali) */
    .stats-band { margin-top: -40px; }
    .stats-band__card { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 28px 22px; }
    .stat:last-child { border-bottom: none; }
    .stat__value { font-size: 2rem; }
}

/* ---------- 21. Pagini legale (Politică / Termeni) ---------- */
/* Banner întunecat sub header-ul fix: logoul alb rămâne lizibil (nu există hero pe subpagini). */
.legal-hero {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: calc(var(--header-h) + 92px) 0 64px;
    position: relative;
    overflow: hidden;
}
.legal-hero::before {
    content: "";
    position: absolute;
    top: -140px; right: -90px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--orange-soft-2), transparent 70%);
    pointer-events: none;
}
.legal-hero__inner { position: relative; max-width: 760px; }
.legal-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 1.4rem + 2.2vw, 2.9rem);
    margin: 16px 0 20px;
}
.legal-hero__updated {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}
.legal-hero__updated svg { width: 17px; height: 17px; color: var(--orange); }
.legal-hero__updated strong { color: #fff; font-weight: 600; }

.legal-doc { padding: 76px 0 96px; }
.legal-doc__inner { max-width: 820px; }
.legal-doc__intro {
    font-size: 1.1rem;
    color: var(--ink);
    line-height: 1.75;
    padding-bottom: 34px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}
.legal-doc h2 {
    font-size: 1.4rem;
    color: var(--ink);
    margin: 44px 0 16px;
}
.legal-doc p { margin-bottom: 16px; }
.legal-doc ul {
    list-style: none;
    margin: 4px 0 18px;
    padding: 0;
    display: grid;
    gap: 12px;
}
.legal-doc ul li {
    position: relative;
    padding-left: 28px;
    color: var(--slate);
}
.legal-doc ul li::before {
    content: "";
    position: absolute;
    left: 2px; top: 10px;
    width: 8px; height: 8px;
    border-radius: 2px;
    background: var(--orange);
}

/* Card de contact la finalul documentului */
.legal-contact {
    margin-top: 56px;
    padding: 32px 34px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}
.legal-contact h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 10px; }
.legal-contact p { margin-bottom: 18px; max-width: 560px; }
.legal-contact__links { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.legal-contact__links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    transition: color 0.2s ease;
}
.legal-contact__links a:hover { color: var(--orange); }
.legal-contact__links svg { width: 18px; height: 18px; color: var(--orange); }

/* Link „înapoi acasă” */
.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 44px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    transition: gap 0.25s var(--ease), color 0.2s ease;
}
.legal-back svg { width: 18px; height: 18px; }
.legal-back:hover { color: var(--orange); gap: 13px; }

/* Linkuri legale în footer */
.footer__legal a { transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--orange); }
.footer__legal span[aria-hidden] { opacity: 0.4; margin: 0 7px; }

@media (max-width: 900px) {
    .legal-hero { padding-top: calc(var(--header-h) + 44px); }
}

@media (max-width: 600px) {
    .legal-doc { padding: 56px 0 72px; }
    .legal-contact { padding: 26px 22px; }
    .legal-contact__links { flex-direction: column; gap: 14px; }
}

/* ---------- 22. Banner consimțământ cookie ---------- */
.cookie {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    width: min(420px, calc(100vw - 48px));
    background: var(--ink-2);
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 26px;
    /* ascuns implicit — JS adaugă .is-visible dacă nu există deja un consimțământ */
    transform: translateY(140%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.55s var(--ease), opacity 0.4s ease, visibility 0.4s;
}
.cookie.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }

.cookie__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cookie__icon {
    flex: 0 0 auto;
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--orange-soft-2);
    color: var(--orange);
}
.cookie__icon svg { width: 22px; height: 22px; }
.cookie__title { color: #fff; font-size: 1.05rem; }

.cookie__text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.cookie__text a {
    color: #ff9b59;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie__text a:hover { color: #fff; }

.cookie__actions { display: flex; gap: 12px; }
.cookie__btn { flex: 1; padding: 13px 18px; font-size: 0.9rem; }
.cookie .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.26); background: transparent; }
.cookie .btn-outline:hover { border-color: #fff; transform: translateY(-2px); }

@media (max-width: 560px) {
    .cookie { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .cookie { transition: opacity 0.3s ease, visibility 0.3s; transform: none; }
}
