/* Extras din <style> inline — CSP fără unsafe-inline pe site-ul public (audit codex F5/C11). */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* Sitewide cursor — text non-editabil = default */
* { cursor: default; }
a, a *,
button, button *,
label, label *,
summary, summary *,
select,
[role="button"], [role="button"] *,
[onclick], [onclick] *,
[tabindex]:not([tabindex="-1"]),
input[type="button"], input[type="submit"], input[type="reset"], input[type="checkbox"], input[type="radio"], input[type="file"] { cursor: pointer; }
input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="range"]), textarea, [contenteditable="true"] { cursor: text; }
/* ═══ PF THEME (default) ═══ */
:root {
  --primary: #003d7a; --primary-light: #0055a8; --secondary: #0066cc;
  --accent: #ff6b00; --accent-hover: #ff8533;
  --text: #1a2332; --text-light: #4e5d73;
  --bg: #eef2f7; --bg-soft: #dde6ef; --bg-card: #ffffff; --border: #dce3eb;
  --success: #16a34a;
  --shadow-sm: 0 1px 3px rgba(0,30,60,0.06), 0 1px 2px rgba(0,30,60,0.04);
  --shadow-md: 0 4px 16px rgba(0,30,60,0.08);
  --shadow-lg: 0 12px 40px rgba(0,30,60,0.12);
  --shadow-xl: 0 20px 60px rgba(0,30,60,0.15);
  --hero-from: #003d7a; --hero-mid: #004d99; --hero-to: #0066cc;
  /* Hero overlay — single point of operation. Modifică aici și se propagă. */
  --hero-overlay: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.48) 22%, rgba(0,0,0,0.20) 44%, rgba(0,0,0,0.06) 62%, transparent 78%);
}
/* ═══ PJ THEME ═══ */
body.mode-pj {
  --primary: #0c1f33; --primary-light: #152d45; --secondary: #1a4a7a;
  --accent: #c8902e; --accent-hover: #daa64e;
  --bg-soft: #eef1f5; --border: #d0d8e2;
  --hero-from: #0c1f33; --hero-mid: #122c47; --hero-to: #1a4a7a;
}
body.mode-pj nav a.nav-cta { background: #8a5c13; }
body.mode-pj nav a.nav-cta:hover { background: #6f4a10; }
body.mode-pj .hero h1 span, body.mode-pj .hero h2 span { background: linear-gradient(135deg, #daa64e, #c8902e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* Smooth transitions for theme switch */
body, .hero, .top-bar, nav a.nav-cta, .cta-banner, .site-footer { transition: background 0.5s ease, box-shadow 0.5s ease, color 0.3s ease; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', 'Manrope Fallback', sans-serif; font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: var(--secondary); transition: all 0.25s ease; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
html.js .animate { opacity: 0; } .animate.show { animation: fadeUp 0.6s ease forwards; }
/* Header + Top-bar + Nav: moved to /_assets/header.css (SSOT site-wide). */
/* ═══ MODE TABS (PF / PJ) — decupate sus în hero ═══ */
.mode-tabs-wrap { background: var(--bg); padding-top: 18px; }
.mode-tabs { display: flex; gap: 6px; max-width: 600px; }
.mode-tab { flex: 1; padding: 14px 22px; border: 1px solid var(--border); border-bottom: 0; border-radius: 14px 14px 0 0; background: var(--bg-soft); color: var(--text-light); font-family: inherit; font-size: 0.95em; font-weight: 700; cursor: pointer; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; display: inline-flex; align-items: center; justify-content: center; gap: 8px; position: relative; letter-spacing: 0.01em; }
.mode-tab:hover { background: var(--bg-card); color: var(--text); border-color: var(--primary-light); }
.mode-tab.active { background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-mid) 100%); color: #fff; border-color: var(--hero-from); box-shadow: 0 2px 8px rgba(0,30,60,0.18); cursor: default; }
.mode-tab.active:hover { background: linear-gradient(135deg, var(--hero-from) 0%, var(--hero-mid) 100%); color: #fff; border-color: var(--hero-from); }
.hero { margin-top: 0; }
/* ═══ HERO ═══ */
.hero { background: #0d1f3a; color: #fff; padding: 36px 0 0; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; top:-50%; right:-20%; width:600px; height:600px; border-radius:50%; background:rgba(255,255,255,0.04); pointer-events:none; z-index: 2; }
/* ═══ HERO BG LAYERS (double-image cross-fade + camera push — animation B) ═══ */
.hero-bg-stage { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; display: block; opacity: 0; transform: scale(1.04); transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-bg-pf { opacity: 1; transform: scale(1); }
body.mode-pj .hero-bg-pf { opacity: 0; transform: scale(1.04); }
body.mode-pj .hero-bg-pj { opacity: 1; transform: scale(1); }
.hero-bg-overlay { position: absolute; inset: 0; z-index: 1; background: var(--hero-overlay); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; position: relative; z-index: 3; }
/* Hero text coordinated translate-fade pe switchMode (parte din animation B) */
.hero h1, .hero h2, #heroSub, #heroBadges { transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.hero.is-switching h1, .hero.is-switching h2, .hero.is-switching #heroSub, .hero.is-switching #heroBadges { opacity: 0; transform: translateY(-8px); }
.hero h1, .hero h2 { font-size: 2.8em; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 18px; }
.hero h1 span, .hero h2 span { background: linear-gradient(135deg, #ffb366, #ff8533); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.12em; line-height: 1.7; color: rgba(255,255,255,0.88); margin-bottom: 28px; text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 50px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); font-size: 0.88em; font-weight: 600; color: #fff; transition: all 0.25s; }
.hero-badge:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
/* ═══ HERO CTAs (primary actions sub badges) ═══ */
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 50px; font-weight: 700; font-size: 1em; text-decoration: none; transition: all 0.25s ease; border: 2px solid transparent; }
.hero-cta-call { background: linear-gradient(135deg, var(--accent), #ff8533); color: #fff; box-shadow: 0 6px 20px rgba(255,107,0,0.3); }
.hero-cta-call:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,0,0.4); color: #fff; }
.hero-cta-wa { background: #25D366; color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.hero-cta-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.4); color: #fff; }
body.mode-pj .hero-cta-call { background: linear-gradient(135deg, #c8902e, #daa64e); box-shadow: 0 6px 20px rgba(200,144,46,0.3); }
body.mode-pj .hero-cta-call:hover { box-shadow: 0 10px 28px rgba(200,144,46,0.4); }
/* ═══ ION (right column hero) ═══ */
.hero-mihai { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 720px; margin-bottom: -1px; animation: fadeUp 0.8s ease 0.2s both; }
.hero-mihai-stage { position: relative; display: inline-block; }
.hero-mihai-img { display: block; height: 740px; width: auto; max-width: 100%; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.35)); }
.hero-bubble { position: absolute; top: 60px; left: -200px; max-width: 220px; background: #fff; color: var(--text); padding: 14px 18px; border-radius: 18px; box-shadow: var(--shadow-lg); font-size: 0.92em; line-height: 1.5; font-weight: 500; animation: fadeUp 0.7s ease 0.6s both; z-index: 2; }
.hero-bubble::after { content:''; position: absolute; top: 32px; right: -10px; width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 10px solid #fff; }
.hero-bubble strong { color: var(--primary); display: block; margin-bottom: 4px; font-size: 0.92em; font-weight: 800; }
body.mode-pj .hero-bubble strong { color: var(--primary); }
/* ═══ PRODUCTS ═══ */
.products-section { padding: 80px 0; background: var(--bg-soft); transition: background 0.5s; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-block; padding: 6px 16px; border-radius: 50px; background: rgba(0,61,122,0.10); color: var(--primary); font-size: 0.82em; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.section-header h2 { font-size: 2.4em; font-weight: 800; color: var(--primary); letter-spacing: -0.02em; margin-bottom: 12px; transition: color 0.5s; }
.section-header p { color: var(--text-light); font-size: 1.08em; max-width: 560px; margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* ═══ PRODUCT CARDS — Immersive Full-Bleed (May 2026 v2) ═══ */
.product-card { position: relative; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; cursor: pointer; isolation: isolate; box-shadow: 0 4px 12px rgba(0,30,60,0.08); transition: translate 700ms cubic-bezier(0.16,1,0.3,1), box-shadow 400ms ease; text-decoration: none; color: inherit; display: block; }
.product-card:hover { translate: 0 -6px; box-shadow: 0 30px 60px -16px rgba(0,30,60,0.30); }
.product-card img.product-hero { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1500ms cubic-bezier(0.16,1,0.3,1); z-index: 0; display: block; }
.product-card:hover img.product-hero { transform: scale(1.08); }
.product-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,30,60,0.55) 65%, rgba(0,30,60,0.92) 100%); z-index: 1; pointer-events: none; transition: opacity 500ms ease; }
.product-tag { position: absolute; top: 18px; left: 18px; z-index: 3; font-size: 0.66em; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; padding: 6px 12px; background: rgba(0,0,0,0.32); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.18); border-radius: 100px; }
.product-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px 22px 22px; color: #fff; }
.product-card h3 { font-family: 'Lora', 'Lora Fallback', Georgia, serif; font-weight: 600; font-size: 1.7em; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 8px; color: #fff; transition: none; }
.product-card p { font-size: 0.88em; line-height: 1.5; color: rgba(255,255,255,0.85); margin: 0 0 14px; }
.product-features { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 6px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 600ms cubic-bezier(0.16,1,0.3,1), opacity 400ms ease, margin-bottom 500ms ease; }
.product-card:hover .product-features { max-height: 220px; opacity: 1; }
.product-features li { font-size: 0.78em; line-height: 1.35; color: rgba(255,255,255,0.92); position: relative; padding-left: 18px; }
.product-features li::before { content: '+'; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; font-size: 1.2em; line-height: 1; }
.product-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 0.86em; font-weight: 700; color: #fff; padding: 10px 18px; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.25); border-radius: 100px; transition: all 0.3s ease; }
.product-card:hover .product-cta { background: var(--accent); border-color: var(--accent); }
.product-cta-arrow { transition: transform 400ms cubic-bezier(0.16,1,0.3,1); display: inline-block; }
.product-card:hover .product-cta-arrow { transform: translateX(4px); }
.products-pj { display: none; }
body.mode-pj .products-pf { display: none; }
body.mode-pj .products-pj { display: block; }
.products-subheader { font-size: 1.05em; font-weight: 600; color: var(--text-muted, #64748b); text-transform: uppercase; letter-spacing: 0.08em; margin: 32px 0 18px; padding-bottom: 8px; border-bottom: 1px solid var(--border, #e2e8f0); }
.products-subheader:first-child { margin-top: 0; }
/* ═══ WHY ═══ */
.why-section { padding: 72px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { text-align: center; padding: 28px 20px; border-radius: 16px; transition: all 0.3s; }
.why-card:hover { background: var(--bg-soft); }
.why-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5em; margin: 0 auto 16px; background: rgba(0,102,204,0.06); }
.why-card h3 { color: var(--primary); font-size: 1.05em; font-weight: 700; margin-bottom: 8px; transition: color 0.5s; }
.why-card p { color: var(--text-light); font-size: 0.88em; line-height: 1.6; }
/* ═══ GHIDURI CAROUSEL ═══ */
.ghiduri-section { padding: 80px 0 88px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 60%, var(--bg) 100%); position: relative; }
/* Flex layout — butoanele = flex siblings ai scroll-ului, zero overlay pe carduri */
.ghiduri-carousel-wrap { position: relative; margin-top: 8px; display: flex; align-items: center; gap: 16px; }
.ghiduri-scroll { flex: 1 1 0; min-width: 0; display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: 0; padding: 14px 0 26px; margin: 0; scrollbar-width: thin; scrollbar-color: var(--primary) transparent; -webkit-overflow-scrolling: touch; }
.ghiduri-scroll::-webkit-scrollbar { height: 6px; }
.ghiduri-scroll::-webkit-scrollbar-track { background: transparent; }
.ghiduri-scroll::-webkit-scrollbar-thumb { background: rgba(0,61,122,0.20); border-radius: 8px; }
.ghiduri-scroll::-webkit-scrollbar-thumb:hover { background: rgba(0,61,122,0.40); }
/* Ghid card carousel — 280px width, mai mici decât product-cards pentru a face loc butoanelor */
.ghiduri-card { flex: 0 0 280px; scroll-snap-align: start; position: relative; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; cursor: pointer; isolation: isolate; box-shadow: 0 4px 12px rgba(0,30,60,0.08); transition: translate 700ms cubic-bezier(0.16,1,0.3,1), box-shadow 400ms ease; text-decoration: none; color: inherit; display: block; }
.ghiduri-card:hover { translate: 0 -6px; box-shadow: 0 30px 60px -16px rgba(0,30,60,0.30); color: inherit; }
.ghiduri-card img.ghiduri-hero { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.55); transition: transform 1500ms cubic-bezier(0.16,1,0.3,1); z-index: 0; display: block; }
.ghiduri-card:hover img.ghiduri-hero { transform: scale(1.65); }
.ghiduri-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,30,60,0.55) 65%, rgba(0,30,60,0.92) 100%); z-index: 1; pointer-events: none; }
.ghiduri-tag { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 6px 12px; border-radius: 50px; background: rgba(255,255,255,0.18); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-size: 0.72em; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.ghiduri-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 20px 22px; z-index: 2; }
.ghiduri-content h3 { font-family: 'Lora', 'Lora Fallback', Georgia, serif; font-weight: 600; font-size: 1.32em; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 8px; color: #fff; }
.ghiduri-content p { font-size: 0.84em; line-height: 1.5; color: rgba(255,255,255,0.86); margin: 0 0 12px; }
.ghiduri-cta { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border-radius: 50px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.20); color: #fff; font-size: 0.82em; font-weight: 600; transition: background 300ms ease, border-color 300ms ease; }
.ghiduri-card:hover .ghiduri-cta { background: var(--accent); border-color: var(--accent); }
.ghiduri-cta-arrow { display: inline-block; transition: transform 300ms ease; }
.ghiduri-card:hover .ghiduri-cta-arrow { transform: translateX(4px); }
/* Triangle nav — pure CSS shape via ::before, flex item (siblings cu scroll-ul) */
.ghiduri-nav { flex-shrink: 0; position: relative; width: 38px; height: 60px; background: transparent; border: none; padding: 0; cursor: pointer; font-size: 0; color: transparent; transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease; filter: drop-shadow(0 4px 14px rgba(0,30,60,0.22)); }
.ghiduri-nav::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 0; box-sizing: content-box; border-top: 30px solid transparent; border-bottom: 30px solid transparent; transition: border-color 0.25s ease; }
.ghiduri-nav-prev::before { border-right: 38px solid var(--primary); }
.ghiduri-nav-next::before { border-left: 38px solid var(--primary); }
.ghiduri-nav:hover { filter: drop-shadow(0 8px 24px rgba(255,107,0,0.42)); transform: scale(1.12); }
.ghiduri-nav-prev:hover::before { border-right-color: var(--accent); }
.ghiduri-nav-next:hover::before { border-left-color: var(--accent); }
.ghiduri-nav:disabled { opacity: 0.20; pointer-events: none; }
@media (max-width: 900px) { .ghiduri-nav { display: none; } }
/* ═══ CTA ═══ */
.cta-banner { padding: 64px 0; background: #0d1f3a; color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; display: block; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.cta-bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,31,58,0.55) 0%, rgba(13,31,58,0.72) 50%, rgba(13,31,58,0.55) 100%); pointer-events: none; }
.cta-banner > .container { position: relative; z-index: 2; }
.cta-banner h2 { font-size: 2em; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 1.08em; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; border-radius: 50px; background: #c04e00; color: #fff; font-size: 1.1em; font-weight: 700; transition: all 0.3s; box-shadow: 0 4px 20px rgba(192,78,0,0.3); }
.cta-btn:hover { background: #a84300; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(192,78,0,0.45); color: #fff; }
/* ═══ FOOTER ═══ */
/* Skip-link + Top-bar contact: moved to /_assets/header.css (SSOT) */
.cta-existing-client { margin-top: 18px; font-size: 0.92em; color: rgba(255,255,255,0.65); }
.cta-existing-client a { color: rgba(255,255,255,0.92); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 3px; font-weight: 600; }
.cta-existing-client a:hover { color: #fff; text-decoration-color: rgba(255,255,255,0.8); }

/* Mini-drop + Hamburger + Mega-menu + Mobile-header-compact + 480px nav: toate moved to /_assets/header.css (SSOT) */

/* ═══ FOOTER 4-COL (May 2026 redesign v3) ═══ */
.site-footer { background: var(--primary); color: #fff; padding: 48px 0 20px; transition: background 0.5s; }
.footer-grid-4 { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col { min-width: 0; }
.footer-col-title { font-size: 0.72em; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.5); margin: 0 0 14px; }
.footer-brand-name { font-size: 1.6em; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 4px; color: #fff; line-height: 1.1; }
.footer-brand-tagline { color: rgba(255,255,255,0.85); font-size: 0.86em; margin: 0 0 10px; }
.footer-brand-partner { color: rgba(255,255,255,0.6); font-size: 0.8em; margin: 0; line-height: 1.55; }
.footer-brand-partner strong { color: rgba(255,255,255,0.88); font-weight: 700; }
.footer-contact-link { display: block; color: rgba(255,255,255,0.95); font-weight: 600; font-size: 0.88em; text-decoration: none; transition: color 0.18s; padding: 2px 0; margin-bottom: 6px; }
.footer-contact-link:hover { color: var(--accent); }
.footer-hours { color: rgba(255,255,255,0.55); font-size: 0.78em; margin: 14px 0 0; line-height: 1.5; }
.footer-page-link { display: block; color: rgba(255,255,255,0.78); font-size: 0.85em; text-decoration: none; padding: 3px 0; margin-bottom: 4px; transition: all 0.15s; }
.footer-page-link:hover { color: var(--accent); transform: translateX(2px); }
.footer-legal-line { color: rgba(255,255,255,0.7); font-size: 0.82em; line-height: 1.6; margin: 0 0 3px; }
.footer-legal-line strong { color: rgba(255,255,255,0.92); font-weight: 600; }
.footer-copyright { color: rgba(255,255,255,0.42); font-size: 0.76em; line-height: 1.5; margin: 18px 0 0; text-align: center; }
@media (max-width: 900px) {
  .footer-grid-4 { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .footer-grid-4 { grid-template-columns: 1fr; gap: 24px; }
  .site-footer { padding: 36px 0 16px; }
  .footer-copyright { text-align: left; }
}
/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } .why-grid { grid-template-columns: repeat(2, 1fr); } .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } .hero h1, .hero h2 { font-size: 2em; } .products-grid { grid-template-columns: 1fr; } .why-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .section-header h2 { font-size: 1.8em; } .hero-mihai { min-height: 460px; margin-bottom: 0; } .hero-mihai-img { height: auto; max-height: 500px; } .hero-bubble { top: 8px; left: 50%; right: auto; transform: translateX(-50%); max-width: 280px; font-size: 0.88em; } .hero-bubble::after { top: auto; right: auto; bottom: -10px; left: 50%; transform: translateX(-50%); border-top: 10px solid #fff; border-bottom: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; } .hero-ctas { justify-content: center; } .hero-cta { padding: 12px 18px; font-size: 0.92em; } .ghiduri-section { padding: 56px 0 64px; } .ghiduri-card { flex: 0 0 220px; } .ghiduri-content h3 { font-size: 1.18em; } .ghiduri-scroll { gap: 16px; padding-bottom: 22px; } }

/* ═══ NIGHT THEME — paletă deep navy easy-on-eyes ═══ */
html.theme-night {
  --primary: #6ba8e3; --primary-light: #8cc0ee; --secondary: #7eb8e8;
  --accent: #ff8d3f; --accent-hover: #ffa766;
  --text: #e2e8f0; --text-light: #a8b3c4;
  --bg: #0f1a2d; --bg-soft: #162338; --bg-card: #1c2c45; --border: #2a3a5a;
  --success: #4ade80;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.6);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.7);
}
html.theme-night body { background: var(--bg); color: var(--text); }
html.theme-night .top-bar { background: #0a1424; }
html.theme-night .site-header { background: var(--bg-card); border-bottom: 1px solid var(--border); }
/* Hero bubble Mihai — păstrează fundal alb + text dark în night (nu folosi --text care e cream în night) */
html.theme-night .hero-bubble { color: #1a2332; }
html.theme-night .hero-bubble strong { color: #003d7a; }
/* Footer + titluri în night: text alb/cream pentru lizibilitate max (NU --primary blue care apare pal) */
html.theme-night .site-footer { background: #0a1424; border-top: 1px solid #1a2c47; }
html.theme-night .site-footer * { color: rgba(255,255,255,0.85); }
html.theme-night .site-footer .footer-brand-name,
html.theme-night .site-footer a:hover { color: #fff; }
html.theme-night .site-footer .footer-col-title { color: rgba(255,255,255,0.55); }
html.theme-night .section-header h2,
html.theme-night .why-card h3,
html.theme-night .product-card h3,
html.theme-night .for-who-card h3,
html.theme-night .benefit-card h3 { color: var(--text); }
html.theme-night .section-tag { background: rgba(107,168,227,0.15); color: var(--primary-light); }
html.theme-night nav a { color: var(--text); }
html.theme-night nav a:hover { color: var(--primary-light); }
html.theme-night .site-logo .site-logo-brand { color: #fff; }
html.theme-night nav a:hover { background: var(--bg-soft); }
html.theme-night .mini-drop, html.theme-night .mega-menu { background: var(--bg-card); border-color: var(--border); }
html.theme-night .mini-drop-item:hover { background: var(--bg-soft); }
html.theme-night .product-card, html.theme-night .why-card, html.theme-night .testimonial { background: var(--bg-card); border-color: var(--border); }
html.theme-night .ghiduri-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 60%, var(--bg) 100%); }
html.theme-night .ghiduri-card:hover { box-shadow: 0 30px 60px -16px rgba(0,0,0,0.55); }
html.theme-night .ghiduri-nav-prev::before { border-right-color: var(--primary-light, #6ba8e3); }
html.theme-night .ghiduri-nav-next::before { border-left-color: var(--primary-light, #6ba8e3); }
html.theme-night .ghiduri-nav-prev:hover::before { border-right-color: var(--accent); }
html.theme-night .ghiduri-nav-next:hover::before { border-left-color: var(--accent); }
html.theme-night .ghiduri-scroll::-webkit-scrollbar-thumb { background: rgba(107,168,227,0.25); }
html.theme-night .section-alt { background: var(--bg-soft); }
html.theme-night img:not(.no-night-dim) { filter: brightness(0.88) contrast(0.95); transition: filter 0.3s ease; }
html.theme-night picture img { filter: brightness(0.85) contrast(0.92); }
/* Night + PJ — paleta gold adaptată pentru fundal warm dark + override-uri pentru hardcoded gold colors */
html.theme-night body.mode-pj {
  --primary: #d4a25a; --primary-light: #e6b974; --secondary: #c8902e;
  --accent: #ffa766; --accent-hover: #ffbb8a;
  --bg: #0e1626; --bg-soft: #141d33; --bg-card: #1a253e; --border: #2c3a5a;
  --hero-from: #0c1f33; --hero-mid: #15243d; --hero-to: #1f3252;
}
html.theme-night body.mode-pj nav a.nav-cta { background: #b87f1e; color: #fff; }
html.theme-night body.mode-pj nav a.nav-cta:hover { background: #9b6818; }
html.theme-night body.mode-pj .hero-cta-call { background: linear-gradient(135deg, #b87f1e, #d4a25a); box-shadow: 0 6px 20px rgba(184,127,30,0.4); }
html.theme-night body.mode-pj .hero-cta-call:hover { box-shadow: 0 10px 28px rgba(184,127,30,0.5); }
html.theme-night body.mode-pj .hero h1 span, html.theme-night body.mode-pj .hero h2 span { background: linear-gradient(135deg, #e6b974, #d4a25a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* .theme-toggle styles + 640px breakpoint: moved to /_assets/header.css (SSOT) */
