/* ================================================================
   RoHub Widgets — Frontend CSS  ·  „Liquid Glass" edition
   ----------------------------------------------------------------
   Aliniat la tema rohub-glass: folosește aceleași variabile CSS
   (--gold, --glass, --stroke, --display, --body …) definite de temă
   pe :root, deci widgeturile urmează automat tema de culoare activă
   (Albastru / Smarald / Coral / Light) și modul light.

   Fiecare var() are fallback, deci aspectul rămâne corect și dacă
   tema nu e activă. Widgeturi: Banner, Profil, Echipă.
   (Serviciile sunt furnizate de temă — [rohub_services].)
   ================================================================ */

.rohub-banner-wrap,
.rohub-profile-wrap,
.rohub-team-section,
.rohub-services {
	--rh-display: var(--display, "Fraunces", Georgia, serif);
	--rh-body:    var(--body, "Figtree", system-ui, sans-serif);
	--rh-gold:    var(--gold, #d9a93d);
	--rh-gold-soft: var(--gold-soft, #eed59a);
	--rh-text:    var(--text, #f2f5fd);
	--rh-dim:     var(--dim, #a8b4d4);
	--rh-glass:   var(--glass, rgba(255, 255, 255, .08));
	--rh-glass-2: var(--glass-2, rgba(255, 255, 255, .12));
	--rh-fill-2:  var(--fill-2, rgba(255, 255, 255, .1));
	--rh-stroke:  var(--stroke, rgba(255, 255, 255, .22));
	--rh-stroke-soft: var(--stroke-soft, rgba(255, 255, 255, .12));
	--rh-hl-1:    var(--hl-1, rgba(255, 255, 255, .28));
	--rh-hl-2:    var(--hl-2, rgba(255, 255, 255, .045));
	--rh-hl-sheen: var(--hl-sheen, rgba(255, 255, 255, .18));
	--rh-hl-edge: var(--hl-edge, rgba(255, 255, 255, .45));
	--rh-shadow:  var(--shadow, rgba(0, 0, 0, .65));
	--rh-r-lg:    var(--r-lg, 24px);
	--rh-r-md:    var(--r-md, 18px);
	--rh-pill:    var(--pill, 100px);
	font-family: var(--rh-body);
}


/* Buton auriu (echivalent .btn-gold din temă). */
.rohub-btn-gold {
	display: inline-flex; align-items: center; justify-content: center; gap: .55em;
	font-family: var(--rh-body); font-weight: 600; font-size: .94rem; letter-spacing: .01em;
	padding: .95em 1.8em; border: 1px solid rgba(255, 243, 214, .65); border-radius: var(--rh-pill);
	text-decoration: none; cursor: pointer; color: #241a04; white-space: nowrap;
	background: linear-gradient(160deg, rgba(244, 212, 134, .95) 0%, rgba(217, 169, 61, .92) 55%, rgba(168, 123, 31, .95) 100%);
	-webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .65) inset, 0 -8px 18px rgba(120, 80, 10, .3) inset, 0 16px 38px -12px rgba(217, 169, 61, .55);
	transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}
.rohub-btn-gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset, 0 -8px 18px rgba(120, 80, 10, .28) inset, 0 24px 50px -14px rgba(217, 169, 61, .7);
}
.rohub-btn-gold:active { transform: scale(.97); }

/* ----------------------------------------------------------------
   BANNER
   ---------------------------------------------------------------- */
.rohub-banner-wrap { position: relative; }

.rohub-banner {
	position: relative;
	background: var(--rh-glass);
	-webkit-backdrop-filter: blur(28px) saturate(180%);
	backdrop-filter: blur(28px) saturate(180%);
	border: 1px solid var(--rh-stroke-soft);
	border-radius: var(--rh-r-lg);
	box-shadow:
		0 1px 0 var(--rh-hl-1) inset,
		0 -14px 30px var(--rh-hl-2) inset,
		0 24px 54px -22px var(--rh-shadow);
	padding: 30px 38px;
	display: flex;
	align-items: center;
	gap: 32px;
	overflow: hidden;
}
.rohub-banner::before {
	content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
	background: linear-gradient(160deg, var(--rh-hl-sheen) 0%, rgba(255, 255, 255, .02) 38%, rgba(255, 255, 255, 0) 60%);
}
.rohub-banner::after {
	content: ""; position: absolute; top: -90px; right: -90px;
	width: 320px; height: 320px; border-radius: 50%; pointer-events: none;
	background: radial-gradient(circle, rgba(217, 169, 61, .14) 0%, transparent 65%);
}

.rohub-banner__divider { width: 1px; height: 68px; background: var(--rh-stroke-soft); flex-shrink: 0; position: relative; z-index: 1; }

.rohub-banner__title-col { flex: 1.4; min-width: 0; position: relative; z-index: 1; }
.rohub-banner__title-col h2 {
	font-family: var(--rh-display);
	font-size: clamp(1.05rem, 2vw, 1.5rem);
	color: var(--rh-text); font-weight: 500; line-height: 1.28; margin: 0;
}
.rohub-banner__title-col h2 em { font-style: italic; color: var(--rh-gold-soft); }
.rohub-banner__title-col p { font-size: .8rem; color: var(--rh-dim); margin-top: 7px; line-height: 1.55; }

.rohub-banner__price-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; position: relative; z-index: 1; }
.rohub-banner__price-lbl { font-size: .58rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--rh-dim); margin-bottom: 6px; }
.rohub-banner__price-row { display: flex; align-items: baseline; line-height: 1; }
.rohub-banner__price-sym,
.rohub-banner__price-val { font-family: var(--rh-display); font-size: 3.4rem; font-weight: 500; color: var(--rh-gold-soft); line-height: 1; }
.rohub-banner__price-val { display: inline-block; transform-origin: center bottom; min-width: 66px; }
.rohub-banner__price-unit { font-size: .8rem; color: var(--rh-dim); margin-left: 8px; padding-bottom: 5px; }
.rohub-banner__price-note { font-size: .68rem; color: var(--rh-dim); opacity: .7; margin-top: 5px; }

.rohub-banner__cta-col { display: flex; flex-direction: column; align-items: center; gap: 9px; flex-shrink: 0; position: relative; z-index: 1; }

.rohub-btn-main {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--rh-body); font-size: .94rem; font-weight: 600; letter-spacing: .01em;
	padding: .95em 2em; border-radius: var(--rh-pill); border: 1px solid rgba(255, 243, 214, .65);
	cursor: pointer; white-space: nowrap; color: #241a04;
	background: linear-gradient(160deg, rgba(244, 212, 134, .95) 0%, rgba(217, 169, 61, .92) 55%, rgba(168, 123, 31, .95) 100%);
	-webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .65) inset, 0 -8px 18px rgba(120, 80, 10, .3) inset, 0 16px 38px -12px rgba(217, 169, 61, .55);
	transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}
.rohub-btn-main:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset, 0 -8px 18px rgba(120, 80, 10, .28) inset, 0 24px 50px -14px rgba(217, 169, 61, .7); }
.rohub-btn-main:active { transform: scale(.97); }

.rohub-btn-link {
	font-size: .72rem; color: var(--rh-dim); text-decoration: none;
	border-bottom: 1px solid var(--rh-stroke-soft); padding-bottom: 1px; cursor: pointer; white-space: nowrap;
	transition: color .2s;
}
.rohub-btn-link:hover { color: var(--rh-text); }

/* Modal */
.rohub-modal-bg {
	display: none; position: fixed; inset: 0;
	background: rgba(4, 8, 20, .72);
	-webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
	align-items: center; justify-content: center;
	z-index: 99999; padding: 20px;
}
.rohub-modal-bg.open { display: flex; }
.rohub-modal {
	position: relative;
	background: var(--bg-2, #101c42);
	border: 1px solid var(--rh-stroke);
	border-radius: var(--rh-r-md);
	box-shadow: 0 1px 0 var(--rh-hl-1) inset, 0 30px 80px -20px rgba(0, 0, 0, .7);
	padding: 34px 30px 26px;
	max-width: 560px; width: 100%;
	max-height: 90vh; overflow-y: auto;
}
.rohub-modal h2 { font-family: var(--rh-display); font-size: 1.5rem; font-weight: 500; color: var(--rh-gold-soft); margin: 0 0 6px; }
.rohub-modal h3 { font-size: .72rem; font-weight: 700; color: var(--rh-text); margin: 16px 0 6px; text-transform: uppercase; letter-spacing: .14em; }
.rohub-modal p, .rohub-modal li { font-size: .85rem; color: var(--rh-dim); line-height: 1.65; }
.rohub-modal ul { padding-left: 18px; margin: 6px 0; }
.rohub-modal li { margin-bottom: 4px; }
.rohub-modal__sub { font-size: .78rem; color: var(--rh-dim); opacity: .8; margin-bottom: 18px; }
.rohub-modal__body hr { border: none; border-top: 1px solid var(--rh-stroke-soft); margin: 14px 0; }
.rohub-modal__actions { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--rh-stroke-soft); }

.rohub-btn-accept {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
	font-family: var(--rh-body); font-size: .98rem; font-weight: 600; letter-spacing: .01em;
	padding: .95em 2em; border-radius: var(--rh-pill); border: 1px solid rgba(255, 243, 214, .65);
	cursor: pointer; color: #241a04;
	background: linear-gradient(160deg, rgba(244, 212, 134, .95) 0%, rgba(217, 169, 61, .92) 55%, rgba(168, 123, 31, .95) 100%);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .65) inset, 0 -8px 18px rgba(120, 80, 10, .3) inset, 0 16px 38px -12px rgba(217, 169, 61, .55);
	transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease;
}
.rohub-btn-accept:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset, 0 -8px 18px rgba(120, 80, 10, .28) inset, 0 24px 50px -14px rgba(217, 169, 61, .7); }

.rohub-btn-decline {
	font-size: .85rem; font-weight: 500; color: var(--rh-dim);
	background: none; border: none; cursor: pointer; text-decoration: underline; transition: color .2s;
}
.rohub-btn-decline:hover { color: var(--rh-text); }

/* Banner — price counter animations */
@keyframes rohub-count-bounce {
	0% { transform: scaleY(1) scaleX(1); }
	15% { transform: scaleY(.82) scaleX(1.12); }
	35% { transform: scaleY(1.18) scaleX(.92); }
	55% { transform: scaleY(.95) scaleX(1.04); }
	100% { transform: scaleY(1) scaleX(1); }
}
@keyframes rohub-final-bounce {
	0% { transform: scale(1); }
	20% { transform: scale(1.2) rotate(-2deg); }
	38% { transform: scale(.88) rotate(1.5deg); }
	56% { transform: scale(1.11) rotate(-1deg); }
	72% { transform: scale(.96); }
	88% { transform: scale(1.04); }
	100% { transform: scale(1) rotate(0); }
}
@keyframes rohub-glow-pulse {
	0%, 100% { text-shadow: 0 0 0 rgba(217, 169, 61, 0); }
	50% { text-shadow: 0 0 22px rgba(217, 169, 61, .6), 0 0 44px rgba(217, 169, 61, .25); }
}

@media (max-width: 600px) {
	.rohub-banner { flex-direction: column; align-items: stretch; padding: 24px 18px; gap: 0; }
	.rohub-banner__divider { display: none; }
	.rohub-banner__title-col { text-align: center; margin-bottom: 18px; }
	.rohub-banner__price-col { align-items: center; margin-bottom: 18px; }
	.rohub-banner__cta-col { align-items: stretch; }
	.rohub-btn-main { width: 100%; justify-content: center; }
	.rohub-btn-link { text-align: center; display: block; }
}

/* ----------------------------------------------------------------
   PROFILE
   ---------------------------------------------------------------- */
.rohub-profile-wrap { max-width: 980px; margin: 0 auto; padding: 60px 24px; }
.rohub-profile-inner { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; }

.rohub-profile-img-wrap { position: relative; }
.rohub-profile-img {
	width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block;
	border-radius: var(--rh-r-md); border: 1px solid var(--rh-stroke-soft);
	box-shadow: 0 24px 54px -22px var(--rh-shadow);
}
.rohub-profile-badge {
	position: absolute; bottom: -14px; left: 20px;
	font-family: var(--rh-body); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; line-height: 1.3;
	color: #241a04; padding: 10px 16px; border-radius: var(--rh-pill); border: 1px solid rgba(255, 243, 214, .65);
	background: linear-gradient(160deg, rgba(244, 212, 134, .95) 0%, rgba(217, 169, 61, .92) 55%, rgba(168, 123, 31, .95) 100%);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset, 0 12px 28px -10px rgba(217, 169, 61, .5);
}

.rohub-profile-right { padding-top: 8px; }
.rohub-profile-eyebrow { font-size: .62rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--rh-gold-soft); margin-bottom: 12px; }
.rohub-profile-name { font-family: var(--rh-display); font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 500; line-height: 1; color: var(--rh-text); margin-bottom: 8px; white-space: pre-line; }
.rohub-profile-role { font-size: .85rem; color: var(--rh-dim); margin-bottom: 26px; letter-spacing: .03em; }
.rohub-profile-divider { width: 50px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--rh-gold), var(--rh-gold-soft)); margin-bottom: 26px; }

.rohub-profile-tags-label { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--rh-gold-soft); margin-bottom: 12px; }
.rohub-profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.rohub-profile-tag {
	font-size: .74rem; font-weight: 500; padding: 6px 14px; border-radius: var(--rh-pill);
	color: var(--rh-gold-soft); border: 1px solid rgba(217, 169, 61, .35); background: rgba(217, 169, 61, .1);
}

.rohub-profile-quals { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.rohub-profile-qual {
	font-size: .78rem; color: var(--rh-dim); padding: 10px 12px; line-height: 1.45;
	border-left: 2px solid var(--rh-gold); border-radius: 0 8px 8px 0; background: var(--rh-fill-2);
}

.rohub-profile-diplomas { margin-top: 44px; }
.rohub-profile-diplomas-label { font-size: .62rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--rh-gold-soft); margin-bottom: 14px; }
.rohub-profile-dip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.rohub-profile-dip {
	aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
	border-radius: 10px; border: 1px solid var(--rh-stroke-soft); background: var(--rh-glass);
	transition: transform .3s, box-shadow .3s, border-color .3s;
}
.rohub-profile-dip:hover { transform: translateY(-3px); border-color: rgba(217, 169, 61, .45); box-shadow: 0 14px 30px -14px var(--rh-shadow); }
.rohub-profile-dip img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.rohub-profile-dip:hover img { transform: scale(1.06); }

/* Lightbox */
.rohub-lightbox {
	display: none; position: fixed; inset: 0; z-index: 99999;
	background: rgba(4, 8, 20, .9);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	align-items: center; justify-content: center;
}
.rohub-lightbox.on { display: flex; }
.rohub-lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8); }
.rohub-lightbox-close {
	position: fixed; top: 20px; right: 28px;
	color: var(--rh-text); font-size: 28px; cursor: pointer; line-height: 1;
	background: none; border: none;
}

@media (max-width: 700px) {
	.rohub-profile-inner { grid-template-columns: 1fr; }
	.rohub-profile-quals { grid-template-columns: 1fr; }
	.rohub-profile-dip-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ----------------------------------------------------------------
   TEAM FLIP CARDS
   ---------------------------------------------------------------- */
.rohub-team-section { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.rohub-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.rohub-flip-card { perspective: 1000px; height: 400px; cursor: pointer; }
.rohub-flip-card-inner { position: relative; width: 100%; height: 100%; transition: transform .6s cubic-bezier(.22, 1, .36, 1); transform-style: preserve-3d; }
.rohub-flip-card.flipped .rohub-flip-card-inner { transform: rotateY(180deg); }

.rohub-flip-card-front,
.rohub-flip-card-back {
	position: absolute; width: 100%; height: 100%;
	backface-visibility: hidden; -webkit-backface-visibility: hidden;
	border-radius: var(--rh-r-md); overflow: hidden;
	border: 1px solid var(--rh-stroke-soft);
	box-shadow: 0 24px 54px -22px var(--rh-shadow);
}

.rohub-flip-card-front {
	display: flex; flex-direction: column;
	background: var(--rh-glass);
	-webkit-backdrop-filter: blur(28px) saturate(180%); backdrop-filter: blur(28px) saturate(180%);
}
.rohub-flip-card-back { color: #fff; transform: rotateY(180deg); padding: 32px; overflow-y: auto; }

.rohub-flip-card-img-wrap { width: 100%; height: 250px; overflow: hidden; position: relative; background: var(--rh-fill-2); }
.rohub-flip-card-img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; transition: transform .35s ease; }
.rohub-flip-card:hover .rohub-flip-card-img { transform: scale(1.05); }
.rohub-flip-card-placeholder {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	font-family: var(--rh-display); font-size: 60px; font-weight: 500; color: #fff;
	background: linear-gradient(135deg, var(--accent, #2e57d8) 0%, var(--bg-2, #101c42) 100%);
}
.rohub-flip-card-img + .rohub-flip-card-placeholder { display: none; }

.rohub-flip-card-hint {
	position: absolute; bottom: 14px; right: 14px;
	font-size: .7rem; font-weight: 700; letter-spacing: .06em;
	padding: 7px 14px; border-radius: var(--rh-pill); pointer-events: none;
	color: #241a04;
	background: linear-gradient(160deg, rgba(244, 212, 134, .95) 0%, rgba(217, 169, 61, .92) 100%);
	box-shadow: 0 8px 20px -8px rgba(217, 169, 61, .6);
	animation: rohub-card-pulse 2s infinite;
}
.rohub-flip-card.flipped .rohub-flip-card-hint { display: none; }

.rohub-flip-card-info {
	padding: 20px; text-align: center; flex: 1;
	display: flex; flex-direction: column; justify-content: center;
	border-top: 1px solid var(--rh-stroke-soft); border-bottom: 4px solid var(--rh-gold);
}
.rohub-flip-card-name { font-family: var(--rh-display); font-size: 1.4rem; font-weight: 500; color: var(--rh-text); margin-bottom: 6px; }
.rohub-flip-card-role { font-size: .82rem; font-weight: 600; color: var(--rh-gold-soft); text-transform: uppercase; letter-spacing: .08em; }

.rohub-flip-card-close {
	position: absolute; top: 18px; right: 18px;
	width: 34px; height: 34px; border-radius: 50%; font-size: 20px; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	color: #fff; border: 1px solid rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .18);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	transition: background .25s;
}
.rohub-flip-card-close:hover { background: rgba(255, 255, 255, .32); }
.rohub-flip-card-back-title { font-family: var(--rh-display); font-size: 1.4rem; font-weight: 500; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, .3); }
.rohub-flip-card-back-desc { font-size: .92rem; line-height: 1.75; margin-bottom: 18px; }
.rohub-flip-card-back-details { font-size: .85rem; line-height: 1.7; opacity: .95; }

/* Spate card — navy/auriu, asortat cu tema RO HUB (înlocuiește culorile random) */
.rohub-flip-card-back { background: linear-gradient(160deg, rgba(24,38,82,.97) 0%, rgba(10,18,40,.99) 100%); border-color: rgba(217,169,61,.35); }
.rohub-flip-card-back-title { color: var(--rh-gold-soft); border-bottom-color: rgba(217,169,61,.35); }
.rohub-flip-card-back strong { color: var(--rh-gold-soft); }
.rohub-flip-card-back-desc, .rohub-flip-card-back-details { color: var(--rh-text); }
.rohub-flip-card-close { color: var(--rh-gold-soft); border-color: rgba(217,169,61,.4); background: rgba(217,169,61,.16); }
.rohub-flip-card-close:hover { background: rgba(217,169,61,.32); }

@keyframes rohub-card-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

@media (max-width: 1024px) { .rohub-team-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 768px) {
	.rohub-team-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
	.rohub-flip-card { height: 380px; }
	.rohub-flip-card-img-wrap { height: 220px; }
	.rohub-flip-card-back { padding: 20px; }
	.rohub-flip-card-name { font-size: 1.15rem; }
	.rohub-flip-card-role { font-size: .72rem; }
}
@media (max-width: 480px) {
	.rohub-team-grid { grid-template-columns: 1fr; gap: 20px; }
	.rohub-flip-card { height: 420px; }
	.rohub-flip-card-img-wrap { height: 260px; }
}

/* ----------------------------------------------------------------
   SERVICES (categorii)  ·  oglindește cardurile .svc ale temei
   ---------------------------------------------------------------- */
.rohub-services { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }

.rohub-services-head { margin-bottom: 40px; }
.rohub-services-kicker {
	display: inline-flex; align-items: center; gap: 12px;
	font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
	color: var(--rh-gold-soft); margin-bottom: 14px;
}
.rohub-services-kicker::before { content: ""; width: 38px; height: 1.5px; background: var(--rh-gold); }
.rohub-services-h2 {
	font-family: var(--rh-display); font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.8rem);
	line-height: 1.1; color: var(--rh-text); margin: 0; max-width: 22ch;
}
.rohub-services-h2 em { font-style: italic; color: var(--rh-gold-soft); }
.rohub-services-sub { margin-top: 16px; color: var(--rh-dim); font-weight: 300; line-height: 1.7; font-size: .97rem; max-width: 52ch; }

.rohub-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* Toate cardurile au aceeași înălțime → grilă perfect uniformă. */
.rohub-svc-flip { perspective: 1200px; height: 300px; cursor: pointer; }
.rohub-svc-flip .rohub-flip-card-inner { position: relative; width: 100%; height: 100%; transition: transform .6s cubic-bezier(.22, 1, .36, 1); transform-style: preserve-3d; }
.rohub-svc-flip.flipped .rohub-flip-card-inner { transform: rotateY(180deg); }

.rohub-svc-flip-front,
.rohub-svc-flip-back {
	position: absolute; inset: 0;
	backface-visibility: hidden; -webkit-backface-visibility: hidden;
	border-radius: var(--rh-r-md); overflow: hidden;
	border: 1px solid var(--rh-stroke-soft);
	box-shadow: 0 1px 0 var(--rh-hl-1) inset, 0 -14px 30px var(--rh-hl-2) inset, 0 24px 54px -22px var(--rh-shadow);
}

/* FAȚĂ — icon + titlu + nr. servicii + hint */
.rohub-svc-flip-front {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
	padding: 28px 22px; text-align: center;
	background: var(--rh-glass);
	-webkit-backdrop-filter: blur(28px) saturate(180%); backdrop-filter: blur(28px) saturate(180%);
	transition: background .25s ease;
}
.rohub-svc-flip-front::before {
	content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
	background: linear-gradient(160deg, var(--rh-hl-sheen) 0%, rgba(255, 255, 255, .02) 38%, rgba(255, 255, 255, 0) 60%);
}
.rohub-svc-flip:hover .rohub-svc-flip-front { background: var(--rh-glass-2); }
.rohub-svc-flip-ico { font-size: 2.6rem; line-height: 1; transition: transform .45s cubic-bezier(.34, 1.56, .64, 1); position: relative; z-index: 1; }
.rohub-svc-flip:hover .rohub-svc-flip-ico { transform: translateY(-4px) rotate(-5deg) scale(1.08); }
.rohub-svc-flip-title { font-family: var(--rh-display); font-weight: 500; font-size: 1.3rem; line-height: 1.2; color: var(--rh-text); margin: 0; position: relative; z-index: 1; }
.rohub-svc-flip-count { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--rh-gold-soft); position: relative; z-index: 1; }
.rohub-svc-flip .rohub-flip-card-hint {
	position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
	font-size: .68rem; font-weight: 700; letter-spacing: .05em; white-space: nowrap;
	padding: 6px 14px; border-radius: var(--rh-pill); color: #241a04;
	background: linear-gradient(160deg, rgba(244, 212, 134, .95) 0%, rgba(217, 169, 61, .92) 100%);
	box-shadow: 0 8px 20px -8px rgba(217, 169, 61, .6);
	animation: rohub-card-pulse 2s infinite; z-index: 1;
}
.rohub-svc-flip.flipped .rohub-flip-card-hint { display: none; }

/* SPATE — lista de servicii, revelată la click */
.rohub-svc-flip-back {
	transform: rotateY(180deg); color: var(--rh-text); padding: 26px 24px; overflow-y: auto;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 55%),
		linear-gradient(165deg, var(--accent, #2e57d8) 0%, var(--bg-2, #101c42) 95%);
}
.rohub-svc-flip-back-title {
	font-family: var(--rh-display); font-weight: 500; font-size: 1.2rem; margin: 0 0 14px; padding-bottom: 12px;
	padding-right: 30px; border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.rohub-svc-list { list-style: none; margin: 0; padding: 0; }
.rohub-svc-list li {
	display: flex; align-items: flex-start; gap: 8px;
	font-size: .9rem; font-weight: 300; line-height: 1.5; padding: 5px 0; color: rgba(255, 255, 255, .92);
}
.rohub-svc-list li::before { content: "·"; color: var(--rh-gold-soft); font-weight: 700; flex-shrink: 0; }

.rohub-services-footer { text-align: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--rh-stroke-soft); font-size: .85rem; color: var(--rh-dim); letter-spacing: .03em; }

@media (max-width: 920px) { .rohub-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .rohub-services-grid { grid-template-columns: 1fr; } .rohub-services { padding: 36px 18px; } }

/* ----------------------------------------------------------------
   MISC
   ---------------------------------------------------------------- */
.rohub-no-data {
	padding: 18px 20px; border-radius: var(--r-md, 18px);
	border: 1px solid rgba(217, 169, 61, .35); background: rgba(217, 169, 61, .1);
	color: var(--text, #f2f5fd); font-family: var(--body, "Figtree", sans-serif);
}
.rohub-no-data a { color: var(--gold-soft, #eed59a); }
