/* ===================================================================
   HUB-MODERN.CSS
   Design system condiviso per le pagine modernizzate di andreella.it
   ------------------------------------------------------------------
   Usato da:
   - hub.asp                (HUB principale)
   - hub_fotoclub.asp       (fotoclub convenzionati e amici)
   - news/index.asp         (lista news)
   - index.asp              (home page - card primarie)
   - company_about.asp      (chi siamo + timeline)
   - company_contact.asp    (contatti)
   =================================================================== */


/* ==================================================================
   HERO
   ================================================================== */
.hub-hero {
	background: linear-gradient(135deg, #f7f9fc 0%, #eef2f7 100%);
	padding: 70px 0 60px;
	text-align: center;
	border-bottom: 1px solid rgba(0,0,0,0.04);
}
.hub-hero h1 {
	font-size: 2.6rem;
	font-weight: 700;
	margin: 0 0 18px;
	letter-spacing: -0.5px;
	background: linear-gradient(135deg, #1a1a1a 0%, #444 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hub-hero h1 em {
	font-style: italic;
	background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hub-hero .hub-lead {
	font-size: 1.1rem;
	color: #5a6a7a;
	line-height: 1.65;
	max-width: 820px;
	margin: 0 auto 32px;
}
.hub-hero .hub-lead strong { color: #1a1a1a; }

.hub-hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 18px;
	background: rgba(255,193,7,0.12);
	border: 1px solid rgba(255,193,7,0.4);
	color: #8a6500;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	margin-bottom: 22px;
}
.hub-hero-pill i { color: #d39e00; }

.hub-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.hub-hero-actions .btn {
	border-radius: 999px;
	padding: 10px 20px;
	font-weight: 600;
	letter-spacing: 0.2px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hub-hero-actions .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}

.hub-hero-note {
	margin-top: 26px;
	padding: 14px 22px;
	background: rgba(255,193,7,0.12);
	border: 1px solid rgba(255,193,7,0.35);
	border-radius: 14px;
	color: #6b5500;
	font-size: 0.92rem;
	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-align: left;
}
.hub-hero-note i { font-size: 1.4rem; color: #b88900; flex-shrink: 0; }

.hub-breadcrumb {
	font-size: 0.85rem;
	color: #7a8898;
	margin-bottom: 14px;
}
.hub-breadcrumb a {
	color: #7a8898;
	text-decoration: none;
	transition: color 0.2s;
}
.hub-breadcrumb a:hover { color: #007bff; }
.hub-breadcrumb i { font-size: 0.7rem; margin: 0 6px; opacity: 0.5; }


/* ==================================================================
   SECTION TITLES
   ================================================================== */
.hub-section-title {
	position: relative;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	margin: 70px 0 14px;
	padding-bottom: 18px;
	color: #1a1a1a;
}
.hub-section-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 64px;
	height: 4px;
	background: linear-gradient(90deg, #007bff, #6610f2);
	border-radius: 2px;
}
.hub-section-title-conv::after {
	background: linear-gradient(90deg, #ffc107, #ff9800);
}
.hub-section-sub {
	text-align: center;
	color: #6a7a8a;
	max-width: 700px;
	margin: 0 auto 40px;
	font-size: 1.02rem;
}


/* ==================================================================
   GRID
   ================================================================== */
.hub-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 28px;
	margin: 30px 0 60px;
}


/* ==================================================================
   HUB CARD (base)
   ================================================================== */
.hub-card {
	position: relative;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(15, 30, 60, 0.06);
	transition: transform 0.4s cubic-bezier(.2,.7,.3,1), box-shadow 0.4s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0,0,0,0.04);
}
.hub-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 48px rgba(15, 30, 60, 0.14);
}

/* Card image (foto) - cover con zoom on hover */
.hub-card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #f0f0f0;
}
.hub-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.hub-card:hover .hub-card-image img { transform: scale(1.08); }
.hub-card-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
	pointer-events: none;
}
.hub-card-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f7f9fc 0%, #e3e8ef 100%);
	color: #b0b9c4;
	font-size: 3rem;
}

/* Card logo (contain con sfondo chiaro - per fotoclub) */
.hub-card-logo {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #fafbfd 0%, #eef2f7 100%);
	padding: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hub-card-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
	transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.hub-card:hover .hub-card-logo img { transform: scale(1.06); }
.hub-card-logo::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, transparent 60%, rgba(15,30,60,0.04) 100%);
	pointer-events: none;
}

/* Card icon-hero (gradient + icona grossa - per card senza foto) */
.hub-card-iconhero {
	position: relative;
	aspect-ratio: 16 / 10;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	overflow: hidden;
	text-decoration: none;
}
.hub-card-iconhero i {
	font-size: 4.5rem;
	opacity: 0.95;
	filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2));
	transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.hub-card:hover .hub-card-iconhero i { transform: scale(1.12) rotate(-3deg); }
.hub-card-iconhero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18) 0%, transparent 60%);
	pointer-events: none;
}
.hub-card-iconhero-news    { background: linear-gradient(135deg, #6610f2 0%, #c026d3 100%); }
.hub-card-iconhero-eventi  { background: linear-gradient(135deg, #198754 0%, #20c997 100%); }
.hub-card-iconhero-hub     { background: linear-gradient(135deg, #fb8500 0%, #ffb703 100%); }
.hub-card-iconhero-contact { background: linear-gradient(135deg, #007bff 0%, #00b4d8 100%); }
.hub-card-iconhero-phone   { background: linear-gradient(135deg, #198754 0%, #43a047 100%); }
.hub-card-iconhero-mail    { background: linear-gradient(135deg, #dc3545 0%, #c9184a 100%); }
.hub-card-iconhero-whats   { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }


/* ==================================================================
   BADGES (glassmorphism overlay sull'immagine)
   ================================================================== */
.hub-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 3;
	padding: 6px 14px;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	color: #fff;
	background: rgba(15, 30, 60, 0.55);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.18);
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.hub-badge i { font-size: 0.78rem; }

/* HUB badge variants */
.hub-badge-corso    { background: linear-gradient(135deg, rgba(0,123,255,0.85), rgba(0,180,216,0.85)); }
.hub-badge-evento   { background: linear-gradient(135deg, rgba(220,53,69,0.85), rgba(255,107,107,0.85)); }
.hub-badge-portale  { background: linear-gradient(135deg, rgba(33,37,41,0.85), rgba(73,80,87,0.85)); }
.hub-badge-elenco   { background: linear-gradient(135deg, rgba(255,193,7,0.9), rgba(255,152,0,0.9)); }
.hub-badge-video    { background: linear-gradient(135deg, rgba(220,53,69,0.85), rgba(201,24,74,0.85)); }
.hub-badge-software { background: linear-gradient(135deg, rgba(255,193,7,0.9), rgba(247,127,0,0.9)); }
.hub-badge-web      { background: linear-gradient(135deg, rgba(23,162,184,0.85), rgba(0,180,216,0.85)); }
.hub-badge-festival { background: linear-gradient(135deg, rgba(40,167,69,0.85), rgba(82,183,136,0.85)); }
.hub-badge-academy  { background: linear-gradient(135deg, rgba(108,117,125,0.85), rgba(173,181,189,0.85)); }

/* Fotoclub */
.hub-badge-conv     { background: linear-gradient(135deg, rgba(255,193,7,0.95), rgba(255,152,0,0.95)); box-shadow: 0 6px 18px rgba(255,152,0,0.4); }
.hub-badge-amico    { background: linear-gradient(135deg, rgba(108,117,125,0.85), rgba(73,80,87,0.85)); }

/* Home */
.hub-badge-finance  { background: linear-gradient(135deg, rgba(0,123,255,0.92), rgba(0,180,216,0.92)); }
.hub-badge-about    { background: linear-gradient(135deg, rgba(33,37,41,0.88), rgba(73,80,87,0.88)); }
.hub-badge-promo    { background: linear-gradient(135deg, rgba(220,53,69,0.92), rgba(255,107,107,0.92)); }
.hub-badge-news     { background: linear-gradient(135deg, rgba(102,16,242,0.92), rgba(192,38,211,0.92)); }
.hub-badge-eventi   { background: linear-gradient(135deg, rgba(25,135,84,0.92), rgba(32,201,151,0.92)); }
.hub-badge-hub      { background: linear-gradient(135deg, rgba(251,133,0,0.95), rgba(255,183,3,0.95)); }

/* News */
.hub-badge-evid     { left: 14px; background: linear-gradient(135deg, rgba(255,193,7,0.95), rgba(255,152,0,0.95)); box-shadow: 0 6px 18px rgba(255,152,0,0.4); }
.hub-badge-new      { right: 14px; left: auto; background: linear-gradient(135deg, rgba(220,53,69,0.92), rgba(154,30,53,0.92)); animation: hubNewPulse 1.8s ease-in-out infinite; }

@keyframes hubNewPulse {
	0%, 100% { transform: scale(1); filter: brightness(1); }
	50%      { transform: scale(1.06); filter: brightness(1.15); }
}
@media (prefers-reduced-motion: reduce) {
	.hub-badge-new { animation: none; }
}


/* ==================================================================
   CARD BODY
   ================================================================== */
.hub-card-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.hub-card-title {
	font-size: 1.18rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 10px;
}
.hub-card-title a {
	color: #1a1a1a;
	text-decoration: none;
	background-image: linear-gradient(90deg, #007bff, #6610f2);
	background-size: 0% 2px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size 0.35s ease, color 0.2s ease;
}
.hub-card-title a:hover,
.hub-card:hover .hub-card-title a {
	color: #007bff;
	background-size: 100% 2px;
}
.hub-card-title-link {
	background-image: linear-gradient(90deg, #007bff, #6610f2);
	background-size: 0% 2px;
	background-repeat: no-repeat;
	background-position: 0 100%;
	transition: background-size 0.35s ease, color 0.2s ease;
	color: #1a1a1a;
	text-decoration: none;
}
.hub-card:hover .hub-card-title-link {
	background-size: 100% 2px;
	color: #007bff;
}
.hub-card-meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.83rem;
	color: #7a8898;
	margin-bottom: 14px;
}
.hub-card-meta i { color: #007bff; font-size: 0.95rem; }
.hub-card-desc {
	font-size: 0.93rem;
	color: #4a5868;
	line-height: 1.6;
	margin: 0 0 22px;
	flex: 1;
}


/* ==================================================================
   CTA (full-width gradient button)
   ================================================================== */
.hub-card-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 13px 18px;
	border-radius: 14px;
	font-weight: 600;
	font-size: 0.92rem;
	text-decoration: none;
	color: #fff !important;
	background: linear-gradient(135deg, #007bff, #0056b3);
	box-shadow: 0 6px 16px rgba(0,123,255,0.25);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
	border: none;
	margin-top: auto;
}
.hub-card-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0,123,255,0.4);
	filter: brightness(1.05);
	color: #fff !important;
}

.hub-card-cta-danger  { background: linear-gradient(135deg, #dc3545, #a71d2a); box-shadow: 0 6px 16px rgba(220,53,69,0.28); }
.hub-card-cta-danger:hover  { box-shadow: 0 10px 24px rgba(220,53,69,0.4); }
.hub-card-cta-dark    { background: linear-gradient(135deg, #343a40, #1a1d20); box-shadow: 0 6px 16px rgba(33,37,41,0.28); }
.hub-card-cta-dark:hover    { box-shadow: 0 10px 24px rgba(33,37,41,0.4); }
.hub-card-cta-warning { background: linear-gradient(135deg, #ffc107, #d39e00); box-shadow: 0 6px 16px rgba(255,193,7,0.3); color: #fff !important; }
.hub-card-cta-warning:hover { box-shadow: 0 10px 24px rgba(255,193,7,0.45); }
.hub-card-cta-success { background: linear-gradient(135deg, #28a745, #1c7430); box-shadow: 0 6px 16px rgba(40,167,69,0.28); }
.hub-card-cta-success:hover { box-shadow: 0 10px 24px rgba(40,167,69,0.4); }
.hub-card-cta-info    { background: linear-gradient(135deg, #17a2b8, #0e6674); box-shadow: 0 6px 16px rgba(23,162,184,0.28); }
.hub-card-cta-info:hover    { box-shadow: 0 10px 24px rgba(23,162,184,0.4); }
.hub-card-cta-promo   { background: linear-gradient(135deg, #dc3545, #a71d2a); box-shadow: 0 6px 16px rgba(220,53,69,0.28); }
.hub-card-cta-promo:hover   { box-shadow: 0 10px 24px rgba(220,53,69,0.45); }
.hub-card-cta-about   { background: linear-gradient(135deg, #343a40, #1a1d20); box-shadow: 0 6px 16px rgba(33,37,41,0.28); }
.hub-card-cta-about:hover   { box-shadow: 0 10px 24px rgba(33,37,41,0.45); }
.hub-card-cta-news    { background: linear-gradient(135deg, #6610f2, #4a08b8); box-shadow: 0 6px 16px rgba(102,16,242,0.28); }
.hub-card-cta-news:hover    { box-shadow: 0 10px 24px rgba(102,16,242,0.45); }
.hub-card-cta-eventi  { background: linear-gradient(135deg, #198754, #146c43); box-shadow: 0 6px 16px rgba(25,135,84,0.28); }
.hub-card-cta-eventi:hover  { box-shadow: 0 10px 24px rgba(25,135,84,0.45); }
.hub-card-cta-hub     { background: linear-gradient(135deg, #fb8500, #d96e00); box-shadow: 0 6px 16px rgba(251,133,0,0.28); }
.hub-card-cta-hub:hover     { box-shadow: 0 10px 24px rgba(251,133,0,0.45); }
.hub-card-cta-fb      { background: linear-gradient(135deg, #3b5998, #2d4373); box-shadow: 0 5px 14px rgba(59,89,152,0.28); }
.hub-card-cta-fb:hover      { box-shadow: 0 10px 22px rgba(59,89,152,0.42); }
.hub-card-cta-whats   { background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 5px 14px rgba(37,211,102,0.28); }
.hub-card-cta-whats:hover   { box-shadow: 0 10px 22px rgba(37,211,102,0.42); }
.hub-card-cta-disabled {
	background: linear-gradient(135deg, #adb5bd, #868e96);
	box-shadow: none;
	cursor: not-allowed;
	opacity: 0.75;
}
.hub-card-cta-disabled:hover { transform: none; box-shadow: none; }

/* CTA con testo lungo (es. titoli news SEO-friendly) */
.hub-card-cta-text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: break-word;
}

/* CTA multi-bottoni (fotoclub: sito + facebook) */
.hub-card-actions {
	display: flex;
	gap: 8px;
	margin-top: auto;
}
.hub-card-actions .hub-card-cta {
	flex: 1;
	padding: 11px 12px;
	font-size: 0.85rem;
	white-space: nowrap;
	margin-top: 0;
}


/* ==================================================================
   FOOTER - "Perche' sceglierci" (4 feature box prima del footer dark)
   ================================================================== */
.hub-footer-features {
	padding: 70px 0;
	background: #fff;
	border-top: 1px solid rgba(0,0,0,0.04);
}
.hub-footer-features-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
}
.hub-footer-feature {
	text-align: center;
	padding: 8px;
}
.hub-footer-feature-icon {
	width: 70px;
	height: 70px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.9rem;
	color: #fff;
	margin-bottom: 18px;
}
.hub-footer-feature-icon.ff-warranty { background: linear-gradient(135deg, #007bff, #0056b3); box-shadow: 0 8px 22px rgba(0,123,255,0.28); }
.hub-footer-feature-icon.ff-pay      { background: linear-gradient(135deg, #198754, #146c43); box-shadow: 0 8px 22px rgba(25,135,84,0.28); }
.hub-footer-feature-icon.ff-ship     { background: linear-gradient(135deg, #fb8500, #d96e00); box-shadow: 0 8px 22px rgba(251,133,0,0.28); }
.hub-footer-feature-icon.ff-return   { background: linear-gradient(135deg, #6610f2, #4a08b8); box-shadow: 0 8px 22px rgba(102,16,242,0.28); }
.hub-footer-feature h3 {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: #1a1a1a;
}
.hub-footer-feature p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #5a6a7a;
	margin: 0 0 10px;
}
.hub-footer-feature a.hub-footer-feature-link {
	font-size: 0.85rem;
	color: #007bff;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.hub-footer-feature a.hub-footer-feature-link:hover { text-decoration: underline; }


/* ==================================================================
   FOOTER DARK
   ================================================================== */
.hub-footer {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: #c7d0db;
	padding: 60px 0 0;
}
.hub-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
	gap: 32px;
	padding-bottom: 50px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hub-footer-brand-name {
	font-size: 1.3rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
	letter-spacing: -0.3px;
}
.hub-footer-brand-tag {
	font-size: 0.88rem;
	color: #8c9aab;
	margin: 0 0 18px;
	line-height: 1.6;
}
.hub-footer-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	background: rgba(255,193,7,0.14);
	border: 1px solid rgba(255,193,7,0.35);
	color: #ffcd39;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	margin: 0 0 16px;
}
.hub-footer-pill i { color: #ffcd39; }
.hub-footer-social {
	display: flex;
	gap: 10px;
	margin-top: 4px;
}
.hub-footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255,255,255,0.06);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #c7d0db;
	font-size: 1.05rem;
	transition: all 0.25s;
	text-decoration: none;
}
.hub-footer-social a:hover {
	transform: translateY(-3px);
	background: linear-gradient(135deg, #007bff, #6610f2);
	color: #fff;
}

.hub-footer h4 {
	font-size: 0.92rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	position: relative;
	padding-bottom: 10px;
}
.hub-footer h4::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background: linear-gradient(90deg, #007bff, #6610f2);
	border-radius: 999px;
}
.hub-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.hub-footer ul li {
	margin-bottom: 8px;
	font-size: 0.88rem;
}
.hub-footer ul li a {
	color: #c7d0db;
	text-decoration: none;
	transition: color 0.2s, padding 0.2s;
	display: inline-block;
}
.hub-footer ul li a:hover {
	color: #fff;
	padding-left: 4px;
}

.hub-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 0.87rem;
	color: #c7d0db;
	line-height: 1.5;
}
.hub-footer-contact-item i {
	color: #007bff;
	font-size: 1rem;
	margin-top: 2px;
	flex-shrink: 0;
}
.hub-footer-contact-item a {
	color: #c7d0db;
	text-decoration: none;
}
.hub-footer-contact-item a:hover { color: #fff; }
.hub-footer-contact-item strong { color: #fff; font-weight: 600; }

.hub-footer-copyright {
	padding: 22px 0;
	font-size: 0.82rem;
	color: #8c9aab;
}
.hub-footer-copyright-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
}
.hub-footer-copyright a {
	color: #8c9aab;
	text-decoration: none;
}
.hub-footer-copyright a:hover { color: #fff; }
.hub-footer-legal-links {
	display: inline-flex;
	gap: 0;
	flex-wrap: wrap;
	margin-top: 6px;
}
.hub-footer-legal-links a:not(:last-child)::after {
	content: '|';
	margin: 0 8px;
	color: #4a5868;
}
.hub-footer-payments {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	justify-content: flex-end;
}
.hub-footer-payments img {
	width: 42px;
	height: auto;
	opacity: 0.9;
	transition: opacity 0.2s, transform 0.2s;
	filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
	border-radius: 4px;
}
.hub-footer-payments img:hover {
	opacity: 1;
	transform: translateY(-2px);
}

@media (max-width: 991px) {
	.hub-footer-features-grid { grid-template-columns: repeat(2, 1fr); }
	.hub-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
}
@media (max-width: 768px) {
	.hub-footer-features-grid { grid-template-columns: 1fr; gap: 28px; }
	.hub-footer-features { padding: 50px 0; }
	.hub-footer-grid { grid-template-columns: 1fr; padding-bottom: 30px; gap: 28px; }
	.hub-footer { padding: 40px 0 0; }
	.hub-footer-copyright-grid { grid-template-columns: 1fr; text-align: center; }
	.hub-footer-payments { justify-content: center; }
}


/* ==================================================================
   RESPONSIVE BASE
   ================================================================== */
@media (max-width: 991px) {
	.hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
	.hub-hero { padding: 40px 0 36px; }
	.hub-hero h1 { font-size: 1.8rem; }
	.hub-hero .hub-lead { font-size: 0.98rem; }
	.hub-hero-note { font-size: 0.85rem; padding: 12px 16px; }
	.hub-section-title { font-size: 1.5rem; margin-top: 50px; }
	.hub-grid { grid-template-columns: 1fr; gap: 22px; margin-bottom: 40px; }
	.hub-card-image { aspect-ratio: 16 / 9; }
	.hub-card-actions { flex-direction: column; }
}
