/* ===== M Art Confort — Theme Main CSS ===== */
/* Tokens + reset + components — derivate din design handoff (varianta 01 brand original). */

:root {
	--mc-green: #A8C73B;
	--mc-green-d: #8fab2a;
	--mc-black: #050505;
	--mc-ink: #1a1a1a;
	--mc-mute: #6b6b6b;
	--mc-line: #e8e8e3;
	--mc-bg: #ffffff;
	--mc-soft: #f6f7f1;
	--mc-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--mc-font-h: var(--mc-font);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
	margin: 0;
	font-family: var(--mc-font);
	background: var(--mc-bg);
	color: var(--mc-ink);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: -0.005em;
	line-height: 1.55;
	overflow-x: hidden;
	max-width: 100vw;
	position: relative;
}
/* Body si elementele top-level (NU header — mega menu trebuie sa apara peste) */
.mc-topbar, main, .mc-footer { max-width: 100vw; overflow-x: hidden; }
/* Header NU primeste overflow:hidden ca sa permita mega menu sa apara dedesubt */
.mc-header { max-width: 100vw; }
/* Asigura ca toggle-ul de meniu mobile primeste click-uri (fara overlay invizibil) */
.mc-menu-toggle { position: relative; z-index: 51; cursor: pointer; -webkit-tap-highlight-color: rgba(168,199,59,.2); touch-action: manipulation; }
.mc-menu-toggle svg { pointer-events: none; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--mc-font-h); margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.mc-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.mc-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== TOPBAR ===== */
.mc-topbar { background: var(--mc-black); color: rgba(255,255,255,.78); font-size: 12.5px; }
.mc-topbar-inner { max-width: 1240px; margin: 0 auto; padding: 10px 32px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.mc-topbar a { color: inherit; display: inline-flex; gap: 6px; align-items: center; transition: color 120ms; }
.mc-topbar a:hover { color: var(--mc-green); }
.mc-topbar-spacer { flex: 1; }
.mc-topbar-cta { color: var(--mc-green); font-weight: 700; }
.mc-topbar-sep { opacity: .35; }

/* ===== HEADER ===== */
.mc-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--mc-line); }
.mc-header-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.mc-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mc-logo img { height: 56px; width: auto; }
.mc-nav { display: flex; gap: 2px; align-items: center; flex: 1; justify-content: center; flex-wrap: wrap; }
.mc-nav-item { /* nav-item is NOT positioned — mega menu is positioned vs .mc-header for full-width */ }
.mc-nav-item > a { padding: 10px 11px; font-size: 14px; font-weight: 500; color: var(--mc-ink); border-radius: 8px; display: inline-flex; align-items: center; gap: 4px; transition: background 120ms, color 120ms; white-space: nowrap; }
.mc-nav-item > a:hover, .mc-nav-item.current-menu-item > a, .mc-nav-item.current-menu-parent > a, .mc-nav-item.active > a { background: var(--mc-soft); color: var(--mc-black); }
.mc-nav-item.current-menu-item > a, .mc-nav-item.active > a { font-weight: 600; }
.mc-header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.mc-phone { font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; color: var(--mc-ink); }
.mc-phone svg { color: var(--mc-green); }

/* Mobile toggle */
.mc-menu-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; background: transparent; border: 1px solid var(--mc-line); align-items: center; justify-content: center; color: var(--mc-ink); }

/* ===== BUTTONS ===== */
.mc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: transform 120ms, background 120ms, color 120ms, border-color 120ms; white-space: nowrap; line-height: 1; cursor: pointer; }
.mc-btn:active { transform: scale(.97); }
.mc-btn-primary { background: var(--mc-green); color: var(--mc-black); }
.mc-btn-primary:hover { background: var(--mc-green-d); }
.mc-btn-dark { background: var(--mc-black); color: white; }
.mc-btn-dark:hover { background: #1a1a1a; }
.mc-btn-ghost { background: transparent; color: var(--mc-ink); border: 1.5px solid var(--mc-line); }
.mc-btn-ghost:hover { border-color: var(--mc-black); }
.mc-btn-ghost-light { background: rgba(255,255,255,.12); color: white; border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(10px); }
.mc-btn-ghost-light:hover { background: rgba(255,255,255,.2); }
.mc-btn-light { background: white; color: var(--mc-black); }
.mc-btn-light:hover { background: var(--mc-soft); }
.mc-btn-lg { padding: 15px 28px; font-size: 15px; }

/* ===== MEGA MENU ===== */
.mc-mega { position: absolute; left: 0; right: 0; top: 84px; background: white; border-bottom: 1px solid var(--mc-line); box-shadow: 0 30px 60px -30px rgba(0,0,0,.18); z-index: 40; padding: 36px 0; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity 200ms, transform 200ms, visibility 200ms; }
.mc-mega.is-open { opacity: 1; visibility: visible; transform: none; }
.mc-mega-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1.1fr; gap: 36px; }
.mc-mega-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mc-mute); margin-bottom: 16px; }
.mc-mega-col a { display: flex; flex-direction: column; padding: 9px 0; gap: 2px; }
.mc-mega-col a strong { font-weight: 600; font-size: 14.5px; color: var(--mc-ink); transition: color 120ms; }
.mc-mega-col a span { font-size: 12.5px; color: var(--mc-mute); }
.mc-mega-col a:hover strong { color: var(--mc-green-d); }
.mc-mega-feature { background: var(--mc-black); color: white; padding: 28px; border-radius: 18px; display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden; }
.mc-mega-feature::before { content: ""; position: absolute; right: -40px; bottom: -40px; width: 160px; height: 160px; border-radius: 50%; background: var(--mc-green); opacity: .4; filter: blur(20px); }
.mc-mega-feature > * { position: relative; }
.mc-mega-feature span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mc-green); }
.mc-mega-feature strong { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; }
.mc-mega-feature p { font-size: 13px; opacity: .85; margin-bottom: 8px; }

/* ===== HERO Home (full) ===== */
.mc-hero { position: relative; overflow: hidden; }
.mc-hero-full { height: 660px; }
.mc-hero-bg { position: absolute; inset: 0; }
.mc-hero-bg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(5,5,5,.65) 0%, rgba(5,5,5,.2) 60%, transparent 100%); }
.mc-hero-bg::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 14px, transparent 14px 28px); }
.mc-hero-bg-img { position: absolute; inset: 0; background: linear-gradient(135deg, oklch(.36 .04 140), oklch(.18 .02 140)); background-size: cover; background-position: center; }
.mc-hero-content { position: relative; max-width: 1240px; margin: 0 auto; padding: 0 32px; height: 100%; display: flex; flex-direction: column; justify-content: center; color: white; z-index: 2; }
.mc-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; display: inline-flex; align-items: center; gap: 8px; }
.mc-eyebrow::before { content: ""; width: 22px; height: 1.5px; background: currentColor; }
.mc-hero-full .mc-eyebrow { color: var(--mc-green); }
.mc-hero h1 { font-size: 76px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; text-wrap: balance; margin: 18px 0 18px; max-width: 18ch; }
.mc-hero p { font-size: 18px; line-height: 1.55; max-width: 52ch; margin-bottom: 32px; }
.mc-hero-full p { color: rgba(255,255,255,.85); }
.mc-hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.mc-hero-trust { display: flex; gap: 36px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); flex-wrap: wrap; }
.mc-hero-trust > div { display: flex; flex-direction: column; gap: 2px; }
.mc-hero-trust strong { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; }
.mc-hero-trust span { font-size: 12.5px; opacity: .7; }

/* ===== SECTION base ===== */
.mc-section { padding: 90px 0; }
.mc-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; gap: 24px; flex-wrap: wrap; }
.mc-section-head-center { flex-direction: column; align-items: center; text-align: center; }
.mc-section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--mc-green-d); margin-bottom: 12px; }
.mc-section-head h2 { font-size: 42px; font-weight: 800; letter-spacing: -0.035em; margin-bottom: 8px; line-height: 1.05; }
.mc-section-head p { color: var(--mc-mute); font-size: 16px; max-width: 56ch; }
.mc-section-more { font-weight: 600; font-size: 14px; color: var(--mc-green-d); display: inline-flex; align-items: center; gap: 4px; }
.mc-section-more:hover { color: var(--mc-black); }

/* ===== Services list (homepage compact) ===== */
.mc-srv-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mc-srv-item { display: flex; gap: 16px; align-items: center; padding: 22px 24px; background: white; border-radius: 16px; transition: transform 200ms, box-shadow 200ms, background 200ms; cursor: pointer; }
.mc-srv-item:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.15); background: white; }
.mc-srv-item-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--mc-soft); color: var(--mc-green-d); display: grid; place-items: center; flex-shrink: 0; transition: background 200ms, color 200ms; }
.mc-srv-item:hover .mc-srv-item-icon { background: var(--mc-green); color: var(--mc-black); }
.mc-srv-item-body { flex: 1; min-width: 0; }
.mc-srv-item-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mc-green-d); font-weight: 700; display: block; margin-bottom: 2px; }
.mc-srv-item-title { font-size: 17px; font-weight: 700; letter-spacing: -0.018em; margin: 0 0 4px; line-height: 1.25; color: var(--mc-black); }
.mc-srv-item-desc { font-size: 13px; color: var(--mc-mute); line-height: 1.45; margin: 0; }
.mc-srv-item-arrow { color: var(--mc-mute); flex-shrink: 0; transition: color 200ms, transform 200ms; }
.mc-srv-item:hover .mc-srv-item-arrow { color: var(--mc-green-d); transform: translateX(3px); }
@media (max-width: 720px) {
	.mc-srv-list { grid-template-columns: 1fr; }
}

/* ===== Services grid (3 main, alt layout - poate fi folosit altundeva) ===== */
.mc-services { background: var(--mc-soft); }
.mc-srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mc-srv { background: white; border-radius: 20px; overflow: hidden; transition: transform 220ms, box-shadow 220ms; display: flex; flex-direction: column; }
.mc-srv:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.18); }
.mc-srv-img { aspect-ratio: 16/11; position: relative; background-color: var(--mc-soft); }
.mc-srv-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.mc-srv-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mc-green-d); font-weight: 700; }
.mc-srv h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 8px 0 12px; line-height: 1.2; }
.mc-srv p { color: var(--mc-mute); font-size: 14.5px; line-height: 1.55; flex: 1; }
.mc-srv-types { display: flex; flex-wrap: wrap; gap: 6px; margin: 16px 0 22px; }
.mc-srv-type { font-size: 12px; padding: 5px 10px; background: var(--mc-soft); border-radius: 999px; color: var(--mc-ink); }
.mc-srv-cta { display: flex; align-items: center; gap: 10px; padding-top: 20px; border-top: 1px solid var(--mc-line); }
.mc-srv-cta .mc-btn-primary { flex: 1; }

/* ===== WHY ===== */
.mc-why { background: var(--mc-bg); }
.mc-why-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.mc-why-card { padding: 32px; border-radius: 18px; background: white; border: 1px solid var(--mc-line); display: flex; flex-direction: column; gap: 14px; }
.mc-why-card.dark { background: var(--mc-black); color: white; border: 0; }
.mc-why-card.green { background: var(--mc-green); color: var(--mc-black); border: 0; }
.mc-why-card .mc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--mc-soft); display: grid; place-items: center; color: var(--mc-green-d); }
.mc-why-card.dark .mc-icon { background: rgba(168,199,59,.18); color: var(--mc-green); }
.mc-why-card.green .mc-icon { background: var(--mc-black); color: var(--mc-green); }
.mc-why-card h4 { font-size: 19px; font-weight: 700; letter-spacing: -0.018em; }
.mc-why-card p { font-size: 14.5px; line-height: 1.55; opacity: .85; }
.mc-why-card.green p { opacity: 1; color: var(--mc-black); }

/* ===== PROCESS ===== */
.mc-process-bg { background: var(--mc-soft); }
.mc-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.mc-step { padding-top: 16px; position: relative; }
.mc-step::before { content: ""; position: absolute; top: 0; left: 0; right: 12px; height: 2px; background: var(--mc-line); }
.mc-step.first::before { background: var(--mc-green); }
.mc-step-num { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; color: var(--mc-green-d); margin-top: 14px; display: block; }
.mc-step h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.018em; margin: 6px 0 10px; }
.mc-step p { color: var(--mc-mute); font-size: 14px; line-height: 1.55; }

/* ===== PORTFOLIO ===== */
.mc-portfolio { padding: 90px 0; }
.mc-port-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 16px; height: 580px; }
.mc-port-item { border-radius: 18px; position: relative; overflow: hidden; display: block; cursor: pointer; }
.mc-port-item:nth-child(1) { grid-row: span 2; }
.mc-port-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65)); }
.mc-port-item:hover .mc-port-info { transform: translateY(-4px); }
.mc-port-info { position: absolute; left: 20px; right: 20px; bottom: 20px; color: white; z-index: 2; transition: transform 220ms; }
.mc-port-info span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mc-green); font-weight: 700; }
.mc-port-info h4 { font-size: 20px; font-weight: 700; margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.mc-test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mc-test { background: white; border: 1px solid var(--mc-line); border-radius: 18px; padding: 30px; }
.mc-test-stars { color: var(--mc-green-d); letter-spacing: 3px; font-size: 15px; }
.mc-test blockquote { margin: 14px 0 22px; font-size: 16px; line-height: 1.55; color: var(--mc-ink); }
.mc-test figcaption { display: flex; gap: 12px; align-items: center; padding-top: 18px; border-top: 1px solid var(--mc-line); }
.mc-test-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--mc-soft); color: var(--mc-green-d); display: grid; place-items: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.mc-test figcaption strong { display: block; font-size: 14.5px; }
.mc-test figcaption span { font-size: 12.5px; color: var(--mc-mute); }

/* ===== CONTACT FORM ===== */
.mc-form-section { background: var(--mc-black); color: white; padding: 100px 0; }
.mc-form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.mc-form-info h2 { color: white; font-size: 48px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 20px; }
.mc-form-info p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.6; margin-bottom: 32px; max-width: 44ch; }
.mc-form-info .mc-eyebrow { color: var(--mc-green); margin-bottom: 14px; }
.mc-form-bullets { display: flex; flex-direction: column; gap: 14px; }
.mc-form-bullet { display: flex; gap: 12px; align-items: flex-start; }
.mc-form-bullet svg { color: var(--mc-green); margin-top: 2px; flex-shrink: 0; }
.mc-form-bullet div strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.mc-form-bullet div span { font-size: 13px; color: rgba(255,255,255,.65); }

.mc-form { background: white; color: var(--mc-ink); padding: 36px; border-radius: 22px; }
.mc-form h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; }
.mc-form > p { color: var(--mc-mute); font-size: 14px; margin-bottom: 24px; }
.mc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.mc-form-field { display: flex; flex-direction: column; gap: 6px; }
.mc-form-field label { font-size: 12px; font-weight: 600; color: var(--mc-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.mc-form-field input, .mc-form-field select, .mc-form-field textarea { font-family: inherit; font-size: 14.5px; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--mc-line); background: var(--mc-soft); transition: border-color 120ms, background 120ms; color: var(--mc-ink); }
.mc-form-field input:focus, .mc-form-field select:focus, .mc-form-field textarea:focus { outline: 0; border-color: var(--mc-green); background: white; }
.mc-form-field.full { grid-column: 1 / -1; }
.mc-form-field textarea { resize: vertical; min-height: 90px; }
.mc-form-field.has-error input, .mc-form-field.has-error select, .mc-form-field.has-error textarea { border-color: #d04848; }
.mc-form-error { color: #d04848; font-size: 12px; margin-top: 4px; }
.mc-form-checkbox { display: flex; gap: 8px; align-items: flex-start; font-size: 12.5px; color: var(--mc-mute); margin: 18px 0; line-height: 1.5; }
.mc-form-checkbox input { margin-top: 2px; accent-color: var(--mc-green); }
.mc-form-submit { width: 100%; padding: 16px; }
.mc-form-meta { font-size: 12px; color: var(--mc-mute); text-align: center; margin-top: 14px; }
.mc-form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.mc-form-success { text-align: center; padding: 60px 36px; }
.mc-form-success-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--mc-green); margin: 0 auto 18px; display: grid; place-items: center; color: var(--mc-black); }
.mc-form-success h3 { margin-bottom: 14px; }
.mc-form-success p { margin-bottom: 14px; color: var(--mc-mute); }

/* ===== FOOTER ===== */
.mc-footer { background: var(--mc-black); color: rgba(255,255,255,.7); padding: 80px 0 32px; }
.mc-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.12); }
.mc-footer-grid img { height: 56px; filter: brightness(0) invert(1); margin-bottom: 16px; width: auto; }
.mc-footer-grid p { font-size: 14px; line-height: 1.6; margin-bottom: 22px; max-width: 38ch; }
.mc-footer-grid > div { display: flex; flex-direction: column; }
.mc-footer-grid strong { color: white; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; font-weight: 700; }
.mc-footer-grid a { padding: 6px 0; font-size: 14px; transition: color 120ms; color: inherit; }
.mc-footer-grid a:hover { color: var(--mc-green); }
.mc-footer-contact { display: flex; flex-direction: column; gap: 4px; }
.mc-footer-contact a { color: white; font-weight: 600; padding: 5px 0; display: flex; align-items: center; gap: 8px; }
.mc-footer-contact a svg { color: var(--mc-green); }
.mc-footer-contact span { font-size: 13.5px; padding: 5px 0; line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.mc-footer-contact span svg { color: var(--mc-green); flex-shrink: 0; margin-top: 4px; }
.mc-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.mc-footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); display: grid; place-items: center; transition: background 200ms, color 200ms, transform 200ms; }
.mc-footer-social a:hover { background: var(--mc-green); color: var(--mc-black); transform: translateY(-2px); }
.mc-footer-fine { display: flex; justify-content: space-between; padding-top: 28px; font-size: 12.5px; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 12px; }
.mc-footer-fine a { color: inherit; }
.mc-footer-fine a:hover { color: var(--mc-green); }

/* ===== SUBPAGE: service hero ===== */
.mc-sub-hero { padding: 56px 0 64px; background: var(--mc-soft); border-bottom: 1px solid var(--mc-line); }
.mc-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--mc-mute); margin-bottom: 20px; flex-wrap: wrap; }
.mc-breadcrumb a { color: inherit; }
.mc-breadcrumb a:hover { color: var(--mc-green-d); }
.mc-breadcrumb span.sep { opacity: .4; }
.mc-sub-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.mc-sub-hero h1 { font-size: 56px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; margin-bottom: 18px; max-width: 16ch; }
.mc-sub-hero .mc-eyebrow { color: var(--mc-green-d); margin-bottom: 14px; }
.mc-sub-hero p { font-size: 17px; color: var(--mc-mute); line-height: 1.55; max-width: 50ch; margin-bottom: 24px; }
.mc-sub-hero-img { aspect-ratio: 5/4; min-height: 380px; border-radius: 20px; background: linear-gradient(135deg, oklch(.4 .05 140), oklch(.18 .03 140)); position: relative; overflow: hidden; background-size: cover; background-position: center; }
.mc-sub-feats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 480px; }
.mc-sub-feat { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; }
.mc-sub-feat svg { color: var(--mc-green-d); flex-shrink: 0; margin-top: 2px; }

/* ===== SUBPAGE: types grid ===== */
.mc-types-section { padding: 90px 0; }
.mc-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mc-type-card { background: white; border: 1px solid var(--mc-line); border-radius: 18px; overflow: hidden; transition: transform 220ms, box-shadow 220ms; display: flex; flex-direction: column; }
.mc-type-card:hover { transform: translateY(-4px); box-shadow: 0 25px 50px -25px rgba(0,0,0,.15); }
.mc-type-img { aspect-ratio: 5/3.5; position: relative; background-color: var(--mc-soft); background-size: cover; background-position: center; }

/* Creative variant cover — icon mare editorial + pattern brand */
.mc-variant-cover { aspect-ratio: 5/3.5; position: relative; background: var(--mc-soft); overflow: hidden; display: grid; place-items: center; padding: 24px; transition: background 220ms; }
.mc-variant-cover::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(168,199,59,.07) 0 14px, transparent 14px 28px); pointer-events: none; }
.mc-variant-cover .mc-variant-tag { position: absolute; top: 16px; left: 18px; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; color: var(--mc-green-d); z-index: 2; }
.mc-variant-cover .mc-variant-icon { width: 96px; height: 96px; border-radius: 24px; background: white; color: var(--mc-green-d); display: grid; place-items: center; box-shadow: 0 16px 30px -16px rgba(0,0,0,.18), 0 0 0 1px var(--mc-line); transition: transform 220ms, box-shadow 220ms, background 220ms, color 220ms; z-index: 2; }
.mc-type-card:hover .mc-variant-icon { background: var(--mc-green); color: var(--mc-black); transform: scale(1.06); }

/* Variatie subtila intre carduri */
.mc-variant-cover[data-variant-i="1"], .mc-variant-cover[data-variant-i="3"], .mc-variant-cover[data-variant-i="5"] { background: white; }
.mc-variant-cover[data-variant-i="1"]::before, .mc-variant-cover[data-variant-i="3"]::before, .mc-variant-cover[data-variant-i="5"]::before { background: repeating-linear-gradient(45deg, rgba(168,199,59,.06) 0 10px, transparent 10px 24px); }
.mc-type-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.mc-type-body h4 { font-size: 19px; font-weight: 700; letter-spacing: -0.018em; margin-bottom: 8px; }
.mc-type-body p { font-size: 14px; color: var(--mc-mute); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.mc-type-specs { display: flex; flex-direction: column; gap: 6px; padding-top: 16px; border-top: 1px solid var(--mc-line); margin-bottom: 18px; }
.mc-type-spec { display: flex; justify-content: space-between; font-size: 13px; gap: 10px; }
.mc-type-spec span:first-child { color: var(--mc-mute); }
.mc-type-spec span:last-child { font-weight: 600; text-align: right; }
.mc-type-link { display: inline-flex; align-items: center; gap: 4px; color: var(--mc-green-d); font-weight: 600; font-size: 13.5px; }
.mc-type-link:hover { color: var(--mc-black); }

/* ===== STICKY RAIL ===== */
.mc-rail { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 60; }
.mc-rail-btn { width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center; background: white; border: 0; box-shadow: 0 12px 28px -10px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.05); cursor: pointer; position: relative; transition: transform 160ms; color: var(--mc-black); }
.mc-rail-btn:hover { transform: translateX(-3px); }
.mc-rail-btn .mc-rail-tip { position: absolute; right: 68px; top: 50%; transform: translateY(-50%); background: var(--mc-black); color: white; font-size: 12px; font-weight: 600; padding: 7px 12px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 160ms; }
.mc-rail-btn .mc-rail-tip::after { content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--mc-black); }
.mc-rail-btn:hover .mc-rail-tip, .mc-rail-btn:focus .mc-rail-tip { opacity: 1; }
.mc-rail-btn.green { background: var(--mc-green); }
.mc-rail-btn.wa { background: #25D366; color: white; }
.mc-rail-btn.dark { background: var(--mc-black); color: white; }
.mc-rail-btn.green::after, .mc-rail-btn.wa::after { content: ""; position: absolute; inset: -2px; border-radius: 999px; border: 2px solid currentColor; opacity: .25; animation: mcRailPulse 2.4s ease-out infinite; pointer-events: none; }
@keyframes mcRailPulse { 0% { transform: scale(1); opacity: .35; } 100% { transform: scale(1.4); opacity: 0; } }

/* ===== CTA banner ===== */
.mc-cta-banner { padding: 70px 0; }
.mc-cta-banner-inner { background: var(--mc-green); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; color: var(--mc-black); position: relative; overflow: hidden; }
.mc-cta-banner-inner::before { content: ""; position: absolute; right: -100px; top: -100px; width: 280px; height: 280px; border-radius: 50%; background: rgba(5,5,5,.06); }
.mc-cta-banner-inner > * { position: relative; }
.mc-cta-banner h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.06; margin-bottom: 10px; }
.mc-cta-banner p { font-size: 16px; max-width: 50ch; opacity: .85; }
.mc-cta-banner .mc-cta-buttons { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }

/* ===== PAGE generic + content ===== */
.mc-page-content { padding: 60px 0 90px; }
.mc-page-content .mc-inner { max-width: 800px; }
.mc-page-content h1 { font-size: 56px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; margin-bottom: 24px; }
.mc-page-content h2 { font-size: 32px; font-weight: 800; letter-spacing: -0.025em; margin: 40px 0 16px; }
.mc-page-content h3 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; }
.mc-page-content p, .mc-page-content ul, .mc-page-content ol { margin-bottom: 18px; font-size: 16px; line-height: 1.7; }
.mc-page-content ul, .mc-page-content ol { padding-left: 22px; }
.mc-page-content ul { list-style: disc; }
.mc-page-content ol { list-style: decimal; }
.mc-page-content a { color: var(--mc-green-d); text-decoration: underline; }

/* ===== RESPONSIVE ===== */
/* Phone-ul standalone in header e ascuns permanent — exista deja in topbar si in sticky rail */
.mc-header-cta .mc-phone { display: none; }

/* Tighten nav further between 1100-1300 to ensure all 7 items fit */
@media (max-width: 1300px) {
	.mc-header-inner { gap: 16px; }
	.mc-nav { gap: 0; }
	.mc-nav-item > a { padding: 9px 9px; font-size: 13.5px; }
	.mc-logo img { height: 48px; }
}

@media (max-width: 1100px) {
	.mc-hero h1 { font-size: 60px; }
	.mc-srv-grid, .mc-test-grid, .mc-types-grid, .mc-why-grid { grid-template-columns: repeat(2, 1fr); }
	.mc-process { grid-template-columns: repeat(2, 1fr); }
	.mc-form-grid { grid-template-columns: 1fr; gap: 40px; }
	.mc-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
	.mc-port-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
	.mc-port-item:nth-child(1) { grid-row: auto; aspect-ratio: 4/3; }
	.mc-port-item { aspect-ratio: 4/3; }
	.mc-cta-banner-inner { grid-template-columns: 1fr; }
	.mc-cta-banner .mc-cta-buttons { justify-content: flex-start; }
	.mc-sub-hero-grid { grid-template-columns: 1fr; }
	.mc-sub-hero h1 { font-size: 44px; }
}

@media (max-width: 820px) {
	.mc-section { padding: 64px 0; }
	.mc-portfolio { padding: 64px 0; }
	.mc-form-section { padding: 64px 0; }
	.mc-section-head h2 { font-size: 32px; }
	.mc-form-info h2 { font-size: 34px; }
	.mc-cta-banner h2 { font-size: 28px; }
	.mc-cta-banner-inner { padding: 36px; }
	.mc-hero-full { height: 560px; }
	.mc-hero h1 { font-size: 44px; }
	.mc-hero p { font-size: 16px; }
	.mc-srv-grid, .mc-test-grid, .mc-types-grid, .mc-why-grid { grid-template-columns: 1fr; }
	.mc-form-row { grid-template-columns: 1fr; }
	.mc-form { padding: 24px; }
	.mc-page-content h1 { font-size: 38px; }
}

@media (max-width: 720px) {
	.mc-inner, .mc-header-inner, .mc-topbar-inner { padding-left: 16px; padding-right: 16px; }
	.mc-menu-toggle { display: inline-flex; }
	.mc-header-inner { gap: 12px; }
	.mc-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; flex-wrap: nowrap; background: white; border-bottom: 1px solid var(--mc-line); padding: 12px; gap: 0; box-shadow: 0 30px 60px -30px rgba(0,0,0,.18); align-items: stretch; max-height: calc(100vh - 130px); overflow-y: auto; justify-content: flex-start; }
	.mc-nav.is-open { display: flex; }
	.mc-nav-item { width: 100%; flex: 0 0 auto; }
	.mc-nav-item > a { padding: 14px 16px; font-size: 16px; justify-content: space-between; border-radius: 10px; width: 100%; }
	.mc-mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 8px 0 16px; border: 0; display: none; width: 100%; }
	.mc-mega.is-open { display: block; }
	.mc-mega .mc-inner { padding: 0 8px; }
	.mc-mega-grid { grid-template-columns: 1fr; gap: 12px; }
	.mc-mega-col h4 { font-size: 11px; margin-bottom: 8px; }
	.mc-mega-col a { padding: 8px 0; }
	.mc-mega-feature { padding: 20px; }
	.mc-header-cta .mc-phone { display: none; }
	.mc-process { grid-template-columns: 1fr; }
	.mc-footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
	.mc-port-grid { grid-template-columns: 1fr; }
	.mc-port-item { aspect-ratio: 16/10; }
	.mc-rail { right: 12px; gap: 8px; }
	.mc-rail-btn { width: 50px; height: 50px; }
	.mc-topbar-inner { font-size: 11.5px; gap: 12px; }
	.mc-topbar a:nth-child(1), .mc-topbar-spacer { display: none; }
	.mc-hero h1 { font-size: 36px; }
	.mc-hero-trust { gap: 22px; margin-top: 28px; padding-top: 22px; }
	.mc-hero-trust strong { font-size: 20px; }
	.mc-form-info h2 { font-size: 28px; }
	.mc-section-head h2 { font-size: 26px; }
	.mc-section { padding: 48px 0; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ===== COMPLIANZ COOKIE BANNER — branduit M Art Confort ===== */
.cmplz-cookiebanner,
#cmplz-cookiebanner-container .cmplz-cookiebanner {
	font-family: var(--mc-font) !important;
	border-radius: 22px !important;
	box-shadow: 0 30px 60px -30px rgba(0,0,0,.28) !important;
	border: 1px solid var(--mc-line) !important;
	color: var(--mc-ink) !important;
	background: white !important;
}
.cmplz-cookiebanner .cmplz-header,
.cmplz-cookiebanner h2,
.cmplz-cookiebanner h3,
.cmplz-cookiebanner .cmplz-title { color: var(--mc-black) !important; font-weight: 800 !important; letter-spacing: -0.02em !important; }
.cmplz-cookiebanner p,
.cmplz-cookiebanner .cmplz-message { color: var(--mc-mute) !important; font-size: 14px !important; line-height: 1.55 !important; }
.cmplz-cookiebanner a,
.cmplz-cookiebanner .cmplz-links a { color: var(--mc-green-d) !important; }
.cmplz-cookiebanner a:hover { color: var(--mc-black) !important; }

.cmplz-cookiebanner .cmplz-btn,
.cmplz-cookiebanner button,
.cmplz-cookiebanner .cmplz-buttons button,
.cmplz-cookiebanner [class*=cmplz-button] {
	border-radius: 999px !important;
	font-family: var(--mc-font) !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	padding: 11px 22px !important;
	transition: background 200ms, color 200ms, border-color 200ms !important;
}

.cmplz-cookiebanner .cmplz-accept,
.cmplz-cookiebanner .cmplz-btn.cmplz-accept-all,
.cmplz-cookiebanner [data-action="allow"],
.cmplz-cookiebanner button.cmplz-accept-all,
.cmplz-cookiebanner button.cmplz-accept-marketing,
.cmplz-cookiebanner button.cmplz-accept,
.cmplz-cookiebanner .cmplz-save-preferences {
	background: var(--mc-green) !important;
	color: var(--mc-black) !important;
	border: 0 !important;
}
.cmplz-cookiebanner .cmplz-accept:hover,
.cmplz-cookiebanner button.cmplz-accept-all:hover,
.cmplz-cookiebanner button.cmplz-accept:hover { background: var(--mc-green-d) !important; }

.cmplz-cookiebanner .cmplz-deny,
.cmplz-cookiebanner button.cmplz-deny,
.cmplz-cookiebanner [data-action="deny"] {
	background: var(--mc-black) !important;
	color: white !important;
	border: 0 !important;
}
.cmplz-cookiebanner .cmplz-deny:hover { background: #1a1a1a !important; }

.cmplz-cookiebanner .cmplz-view-preferences,
.cmplz-cookiebanner button.cmplz-view-preferences,
.cmplz-cookiebanner .cmplz-manage-options {
	background: transparent !important;
	color: var(--mc-ink) !important;
	border: 1.5px solid var(--mc-line) !important;
}
.cmplz-cookiebanner .cmplz-view-preferences:hover { border-color: var(--mc-black) !important; }

/* Toggle switch checkbox in categories */
.cmplz-cookiebanner .cmplz-slider,
.cmplz-cookiebanner .cmplz-categories .cmplz-slider { background: var(--mc-line) !important; }
.cmplz-cookiebanner input:checked + .cmplz-slider,
.cmplz-cookiebanner .cmplz-categories input[type=checkbox]:checked + .cmplz-slider { background: var(--mc-green) !important; }
.cmplz-cookiebanner .cmplz-categories label { color: var(--mc-ink) !important; }

/* Logo / icon area daca exista */
.cmplz-cookiebanner .cmplz-logo img { max-height: 36px !important; }

/* Manage consent re-open button (jos pe site) */
.cmplz-manage-consent { background: var(--mc-black) !important; color: white !important; border-radius: 999px !important; padding: 8px 16px !important; font-family: var(--mc-font) !important; font-size: 13px !important; font-weight: 600 !important; }
.cmplz-manage-consent:hover { background: var(--mc-green) !important; color: var(--mc-black) !important; }

/* ===== PAGINI NOI: FAQ, Oferta stepper, Parteneri, Despre, Contact, Portofoliu filter ===== */

@keyframes mc-fadein { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* === FAQ === */
.mc-faq-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.mc-faq-aside { position: sticky; top: 92px; }
.mc-faq-cat-head { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--mc-mute); font-weight: 700; margin-bottom: 14px; }
.mc-faq-cats { display: flex; flex-direction: column; gap: 4px; }
.mc-faq-cats button { text-align: left; padding: 12px 14px; background: transparent; color: var(--mc-ink); border: 0; border-radius: 10px; font-size: 14.5px; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 120ms, color 120ms; font-family: inherit; }
.mc-faq-cats button.is-active { background: var(--mc-soft); color: var(--mc-green-d); font-weight: 700; }
.mc-faq-cats button .count { font-size: 11px; opacity: .55; }
.mc-faq-help { margin-top: 32px; padding: 20px; background: var(--mc-black); color: white; border-radius: 14px; }
.mc-faq-help-title { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.mc-faq-help p { font-size: 12.5px; opacity: .75; line-height: 1.55; margin-bottom: 14px; }
.mc-faq-help .mc-btn { width: 100%; padding: 10px 14px; font-size: 13px; }
.mc-faq-cat-title { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 28px; color: var(--mc-black); }
.mc-faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--mc-line); }
.mc-faq-item { border-bottom: 1px solid var(--mc-line); }
.mc-faq-item.is-hidden { display: none; }
.mc-faq-q { width: 100%; text-align: left; padding: 22px 4px; background: transparent; border: 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-family: inherit; }
.mc-faq-q-text { font-size: 17px; font-weight: 700; letter-spacing: -0.018em; color: var(--mc-black); }
.mc-faq-q-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--mc-soft); color: var(--mc-green-d); display: grid; place-items: center; flex-shrink: 0; font-size: 18px; font-weight: 600; transition: background 200ms, color 200ms, transform 200ms; }
.mc-faq-item.is-open .mc-faq-q-icon { background: var(--mc-green); color: var(--mc-black); transform: rotate(180deg); }
.mc-faq-a { display: none; padding: 0 56px 22px 4px; animation: mc-fadein .25s ease; }
.mc-faq-item.is-open .mc-faq-a { display: block; }
.mc-faq-a p { font-size: 15.5px; color: var(--mc-mute); line-height: 1.65; margin-bottom: 10px; }
.mc-faq-cta { background: var(--mc-black); color: white; padding: 56px; border-radius: 22px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.mc-faq-cta .mc-eyebrow { background: rgba(168,199,59,.18); color: var(--mc-green); padding: 5px 12px; border-radius: 6px; }
.mc-faq-cta h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; margin: 14px 0; }
.mc-faq-cta > div p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.55; }
.mc-faq-cta-btns { display: flex; flex-direction: column; gap: 12px; }
.mc-faq-cta-btns a { padding: 18px 22px; border-radius: 12px; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mc-faq-cta-btns .primary { background: var(--mc-green); color: var(--mc-black); }
.mc-faq-cta-btns .ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.25); font-weight: 600; }
.mc-faq-cta-btns small { font-size: 12px; opacity: .7; font-weight: 500; }

/* === OFERTA stepper === */
.mc-stepper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 40px; }
.mc-step-card { padding: 18px 20px; background: white; color: var(--mc-black); border: 1px solid var(--mc-line); border-radius: 14px; display: flex; align-items: center; gap: 14px; transition: all 200ms; }
.mc-step-card.is-current { background: var(--mc-black); color: white; border: 0; }
.mc-step-card.is-done { background: var(--mc-green); color: var(--mc-black); border: 0; }
.mc-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--mc-soft); color: var(--mc-green-d); display: grid; place-items: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.mc-step-card.is-current .mc-step-num { background: var(--mc-green); color: var(--mc-black); }
.mc-step-card.is-done .mc-step-num { background: var(--mc-black); color: var(--mc-green); }
.mc-step-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; opacity: .7; }
.mc-step-card-title { font-size: 15px; font-weight: 700; margin-top: 2px; }
.mc-stepper-panel { background: white; border: 1px solid var(--mc-line); border-radius: 22px; padding: 48px; }
.mc-stepper-step { display: none; }
.mc-stepper-step.is-active { display: block; animation: mc-fadein .3s ease; }
.mc-stepper-panel h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 8px; }
.mc-stepper-panel > .mc-stepper-step > p:first-of-type { color: var(--mc-mute); font-size: 14.5px; margin-bottom: 28px; }
.mc-tip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 28px; }
.mc-tip-card { padding: 16px; background: white; border: 1.5px solid var(--mc-line); border-radius: 14px; cursor: pointer; text-align: left; transition: all 150ms; font-family: inherit; }
.mc-tip-card.is-active { background: var(--mc-soft); border-color: var(--mc-green); }
.mc-tip-card-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--mc-soft); color: var(--mc-green-d); display: grid; place-items: center; margin-bottom: 12px; }
.mc-tip-card.is-active .mc-tip-card-icon { background: var(--mc-green); color: var(--mc-black); }
.mc-tip-card-title { font-size: 13.5px; font-weight: 700; color: var(--mc-black); margin-bottom: 2px; }
.mc-tip-card-desc { font-size: 11.5px; color: var(--mc-mute); }
.mc-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.mc-chip-grid { display: grid; gap: 8px; }
.mc-chip-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.mc-chip-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.mc-chip { padding: 10px 16px; background: white; color: var(--mc-ink); border: 1.5px solid var(--mc-line); border-radius: 100px; font-size: 13.5px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 150ms; text-align: left; }
.mc-chip.square { border-radius: 10px; padding: 12px 14px; font-size: 13px; }
.mc-chip.is-active { background: var(--mc-black); color: white; border-color: var(--mc-black); }
.mc-chip.is-active.green { background: var(--mc-green); color: var(--mc-black); border-color: var(--mc-green-d); }
.mc-stepper-nav { display: flex; justify-content: space-between; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--mc-line); }
.mc-form-success-large { padding: 100px 0 120px; background: linear-gradient(180deg, var(--mc-soft), white 70%); }
.mc-form-success-large .mc-inner { max-width: 720px; text-align: center; }
.mc-form-success-large .mc-success-icon { width: 88px; height: 88px; border-radius: 50%; background: var(--mc-green); color: var(--mc-black); display: grid; place-items: center; margin: 0 auto 28px; font-size: 40px; }
.mc-form-success-large h1 { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 18px; }
.mc-form-success-large > .mc-inner > p { font-size: 18px; color: var(--mc-mute); line-height: 1.6; margin-bottom: 36px; }
.mc-next-steps { background: white; border: 1px solid var(--mc-line); border-radius: 18px; padding: 32px; text-align: left; margin-bottom: 32px; }
.mc-next-steps-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mc-green-d); font-weight: 700; margin-bottom: 18px; }
.mc-next-steps-list { display: flex; flex-direction: column; gap: 18px; }
.mc-next-step { display: flex; gap: 16px; align-items: flex-start; }
.mc-next-step-n { width: 30px; height: 30px; border-radius: 50%; background: var(--mc-soft); color: var(--mc-green-d); display: grid; place-items: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.mc-next-step-t { font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.mc-next-step-d { font-size: 13.5px; color: var(--mc-mute); }
.mc-oferta-hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: end; }
.mc-oferta-bullets { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.mc-oferta-bullet { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: white; border: 1px solid var(--mc-line); border-radius: 10px; }
.mc-oferta-bullet-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--mc-green); color: var(--mc-black); display: grid; place-items: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }

/* === PARTENERI === */
.mc-partner-hero { display: grid; grid-template-columns: 1.3fr 1fr; border-radius: 24px; overflow: hidden; border: 1px solid var(--mc-line); margin-top: 12px; }
.mc-partner-hero-left { background: var(--mc-black); color: white; padding: 72px 64px; }
.mc-partner-hero-left .mc-eyebrow { background: rgba(168,199,59,.18); color: var(--mc-green); padding: 5px 12px; border-radius: 6px; }
.mc-partner-hero-left h1 { font-size: 64px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; margin: 18px 0 22px; }
.mc-partner-hero-left > p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.75); max-width: 52ch; }
.mc-partner-stats { display: flex; gap: 24px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.12); }
.mc-partner-stat-k { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; }
.mc-partner-stat-v { font-size: 12px; opacity: .65; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }
.mc-partner-hero-right { background: var(--mc-green); padding: 64px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.mc-partner-types-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--mc-black); margin-bottom: 14px; }
.mc-partner-types { display: flex; flex-direction: column; gap: 12px; }
.mc-partner-type { background: rgba(5,5,5,.08); padding: 14px 16px; border-radius: 10px; display: flex; gap: 14px; align-items: center; }
.mc-partner-type-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--mc-black); color: var(--mc-green); display: grid; place-items: center; flex-shrink: 0; }
.mc-partner-type-t { font-size: 14px; font-weight: 700; color: var(--mc-black); }
.mc-partner-type-d { font-size: 12.5px; color: rgba(5,5,5,.7); margin-top: 2px; }
.mc-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mc-benefit { background: white; border: 1px solid var(--mc-line); padding: 28px; border-radius: 18px; }
.mc-benefit.featured { background: var(--mc-green); border: 0; }
.mc-benefit-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--mc-soft); color: var(--mc-green-d); display: grid; place-items: center; font-weight: 800; font-size: 16px; margin-bottom: 18px; }
.mc-benefit.featured .mc-benefit-icon { background: var(--mc-black); color: var(--mc-green); }
.mc-benefit h4 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.mc-benefit p { font-size: 14px; color: var(--mc-mute); line-height: 1.6; }
.mc-benefit.featured p { color: rgba(5,5,5,.75); }
.mc-process-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.mc-process-card { background: white; padding: 28px; border-radius: 18px; border: 1px solid var(--mc-line); }
.mc-process-card-n { font-size: 13px; font-weight: 800; color: var(--mc-green-d); margin-bottom: 16px; }
.mc-process-card h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.018em; margin-bottom: 8px; }
.mc-process-card p { font-size: 13.5px; color: var(--mc-mute); line-height: 1.55; }
.mc-quote { background: var(--mc-black); color: white; padding: 56px 64px; border-radius: 22px; display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; }
.mc-quote-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--mc-green); color: var(--mc-black); display: grid; place-items: center; font-size: 36px; font-weight: 800; flex-shrink: 0; }
.mc-quote blockquote { font-size: 22px; font-weight: 600; line-height: 1.45; letter-spacing: -0.012em; margin: 0 0 18px; }
.mc-quote-cite { font-size: 14px; opacity: .7; }
.mc-quote-cite strong { color: white; font-weight: 700; }

/* === DESPRE === */
.mc-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--mc-line); border-bottom: 1px solid var(--mc-line); }
.mc-stats-row > div { padding: 32px 24px; border-right: 1px solid var(--mc-line); }
.mc-stats-row > div:last-child { border-right: 0; }
.mc-stat-k { font-size: 44px; font-weight: 800; letter-spacing: -0.035em; color: var(--mc-black); }
.mc-stat-v { font-size: 13px; color: var(--mc-mute); margin-top: 4px; }
.mc-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.mc-team-card { background: white; padding: 28px; border-radius: 18px; border: 1px solid var(--mc-line); }
.mc-team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--mc-soft); color: var(--mc-green-d); display: grid; place-items: center; font-weight: 700; font-size: 24px; margin-bottom: 16px; overflow: hidden; }
.mc-team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.mc-team-card h4 { font-size: 17px; font-weight: 700; letter-spacing: -0.018em; }
.mc-team-card p { font-size: 13.5px; color: var(--mc-mute); margin-top: 4px; }
.mc-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.mc-mission-grid h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 20px; }
.mc-mission-grid p { color: var(--mc-mute); font-size: 16px; line-height: 1.65; margin-bottom: 16px; }

/* === CONTACT === */
.mc-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 64px; }
.mc-contact-card { padding: 32px; border-radius: 18px; display: flex; flex-direction: column; gap: 14px; text-decoration: none; }
.mc-contact-card.green { background: var(--mc-green); color: var(--mc-black); }
.mc-contact-card.white { background: white; border: 1px solid var(--mc-line); color: var(--mc-ink); }
.mc-contact-card.dark { background: var(--mc-black); color: white; }
.mc-contact-card-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; }
.mc-contact-card.green .mc-contact-card-icon { background: var(--mc-black); color: var(--mc-green); }
.mc-contact-card.white .mc-contact-card-icon { background: var(--mc-soft); color: var(--mc-green-d); }
.mc-contact-card.dark .mc-contact-card-icon { background: rgba(168,199,59,.18); color: var(--mc-green); }
.mc-contact-card-eyebrow { font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }
.mc-contact-card.white .mc-contact-card-eyebrow { color: var(--mc-green-d); }
.mc-contact-card.dark .mc-contact-card-eyebrow { color: var(--mc-green); }
.mc-contact-card-main { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; }
.mc-contact-card.white .mc-contact-card-main, .mc-contact-card.dark .mc-contact-card-main { font-size: 22px; font-weight: 700; line-height: 1.35; }
.mc-contact-card-meta { font-size: 13px; opacity: .85; }
.mc-contact-card.dark .mc-contact-card-meta { opacity: .7; }
.mc-map-wrap { border-radius: 20px; overflow: hidden; border: 1px solid var(--mc-line); position: relative; }
.mc-map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* === PORTFOLIO filter === */
.mc-port-filters { display: flex; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.mc-port-card { display: block; cursor: pointer; }
.mc-port-card.is-hidden { display: none; }

/* === SEO Content + FAQ section pe single serviciu === */
.mc-seo-content { background: white; }
.mc-seo-content-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.mc-seo-content-body { font-size: 16px; line-height: 1.75; color: var(--mc-ink); }
.mc-seo-content-body h2 { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; margin: 28px 0 12px; }
.mc-seo-content-body h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.018em; margin: 24px 0 10px; }
.mc-seo-content-body p { margin-bottom: 16px; }
.mc-seo-content-body p:first-child { font-size: 17.5px; color: var(--mc-black); }
.mc-seo-content-body ul, .mc-seo-content-body ol { margin: 16px 0; padding-left: 22px; }
.mc-seo-content-body li { margin-bottom: 8px; }
.mc-seo-content-body strong { color: var(--mc-black); font-weight: 700; }
.mc-seo-content-body a { color: var(--mc-green-d); text-decoration: underline; text-underline-offset: 3px; }
.mc-seo-content-body a:hover { color: var(--mc-black); }

.mc-seo-faq { position: sticky; top: 110px; }
.mc-seo-faq-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin: 8px 0 18px; }
@media (max-width: 1100px) {
	.mc-seo-content-inner { grid-template-columns: 1fr; gap: 40px; }
	.mc-seo-faq { position: static; }
}

/* === GALERIE PROIECT (single portofoliu) === */
.mc-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mc-gallery-item { display: block; aspect-ratio: 4/3; border-radius: 14px; background-color: var(--mc-soft); background-size: cover; background-position: center; transition: transform 220ms, box-shadow 220ms; position: relative; cursor: zoom-in; overflow: hidden; }
.mc-gallery-item:hover { transform: scale(1.02); box-shadow: 0 25px 50px -25px rgba(0,0,0,.18); }
.mc-gallery-item:nth-child(6n+1) { grid-column: span 2; aspect-ratio: 16/9; }
@media (max-width: 720px) {
	.mc-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
	.mc-gallery-item:nth-child(6n+1) { grid-column: span 2; aspect-ratio: 16/10; }
}

/* === Mobile adjustments pentru paginile noi === */
@media (max-width: 1100px) {
	.mc-faq-layout { grid-template-columns: 1fr; gap: 32px; }
	.mc-faq-aside { position: static; }
	.mc-faq-cats { flex-direction: row; flex-wrap: wrap; }
	.mc-tip-grid { grid-template-columns: repeat(3, 1fr); }
	.mc-stepper { grid-template-columns: 1fr; }
	.mc-partner-hero { grid-template-columns: 1fr; }
	.mc-benefits-grid, .mc-process-cards, .mc-team-grid, .mc-contact-cards, .mc-stats-row, .mc-mission-grid { grid-template-columns: repeat(2, 1fr); }
	.mc-mission-grid { gap: 32px; }
	.mc-quote { grid-template-columns: 1fr; gap: 24px; padding: 36px; }
	.mc-faq-cta { grid-template-columns: 1fr; padding: 40px; }
	.mc-oferta-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
	.mc-tip-grid { grid-template-columns: 1fr 1fr; }
	.mc-benefits-grid, .mc-process-cards, .mc-team-grid, .mc-contact-cards, .mc-stats-row, .mc-mission-grid { grid-template-columns: 1fr; }
	.mc-stats-row > div { border-right: 0; border-bottom: 1px solid var(--mc-line); }
	.mc-stats-row > div:last-child { border-bottom: 0; }
	.mc-stepper-panel { padding: 24px; }
	.mc-partner-hero-left, .mc-partner-hero-right { padding: 36px; }
	.mc-partner-hero-left h1 { font-size: 38px; }
	.mc-faq-q-text { font-size: 15px; }
	.mc-faq-a { padding-right: 12px; }
	.mc-form-success-large { padding: 60px 0 80px; }
	.mc-form-success-large h1 { font-size: 36px; }
	.mc-chip-grid.cols-3, .mc-chip-grid.cols-4 { grid-template-columns: 1fr; }
}
